[vlc-devel] commit: Removed unused i_matrix_coefficients picture_t field. ( Laurent Aimar )
git version control
git at videolan.org
Wed Oct 15 21:30:44 CEST 2008
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Wed Oct 15 20:58:17 2008 +0200| [9d2b7e0e7a5d1065666dd82ec6eec76a1a8b2985] | committer: Laurent Aimar
Removed unused i_matrix_coefficients picture_t field.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9d2b7e0e7a5d1065666dd82ec6eec76a1a8b2985
---
include/vlc_vout.h | 1 -
src/video_output/vout_pictures.c | 2 --
2 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/include/vlc_vout.h b/include/vlc_vout.h
index 47206d5..6cbf932 100644
--- a/include/vlc_vout.h
+++ b/include/vlc_vout.h
@@ -81,7 +81,6 @@ struct picture_t
int i_status; /**< picture flags */
int i_type; /**< is picture a direct buffer ? */
bool b_slow; /**< is picture in slow memory ? */
- int i_matrix_coefficients; /**< in YUV type, encoding type */
/**@}*/
/** \name Picture management properties
diff --git a/src/video_output/vout_pictures.c b/src/video_output/vout_pictures.c
index a939313..b93f403 100644
--- a/src/video_output/vout_pictures.c
+++ b/src/video_output/vout_pictures.c
@@ -178,8 +178,6 @@ picture_t *vout_CreatePicture( vout_thread_t *p_vout,
p_freepic->i_nb_fields = i_nb_fields;
p_freepic->b_top_field_first = b_top_field_first;
- p_freepic->i_matrix_coefficients = 1;
-
p_vout->i_heap_size++;
}
else
More information about the vlc-devel
mailing list