]> git.sesse.net Git - vlc/commitdiff
Removed unused i_matrix_coefficients picture_t field.
authorLaurent Aimar <fenrir@videolan.org>
Wed, 15 Oct 2008 18:58:17 +0000 (20:58 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Wed, 15 Oct 2008 19:30:02 +0000 (21:30 +0200)
include/vlc_vout.h
src/video_output/vout_pictures.c

index 47206d54f6993298ebc37e9495756f9b0ca3dc67..6cbf9321f5c1ed77dc2699afa6576688336c675c 100644 (file)
@@ -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
index a93931369dd0f0232fd80b8496ed3e484be35ee5..b93f4038af05c25d5a3a3f9659adc92d8b6816a8 100644 (file)
@@ -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