[vlc-commits] h264: name itu t t35 registration
    Francois Cartegnie 
    git at videolan.org
       
    Thu Aug  6 12:55:15 CEST 2015
    
    
  
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Thu Aug  6 12:53:26 2015 +0200| [a98bd633e04de104088fd788833e03b9dec42baf] | committer: Francois Cartegnie
h264: name itu t t35 registration
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a98bd633e04de104088fd788833e03b9dec42baf
---
 modules/packetizer/h264.c     |    2 +-
 modules/packetizer/h264_nal.h |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/packetizer/h264.c b/modules/packetizer/h264.c
index 292daf3..6512665 100644
--- a/modules/packetizer/h264.c
+++ b/modules/packetizer/h264.c
@@ -1052,7 +1052,7 @@ static void ParseSei( decoder_t *p_dec, block_t *p_frag )
         }
 
         /* Look for user_data_registered_itu_t_t35 */
-        if( i_type == SEI_USER_DATA_REGISTERED )
+        if( i_type == SEI_USER_DATA_REGISTERED_ITU_T_T35 )
         {
             static const uint8_t p_dvb1_data_start_code[] = {
                 0xb5,
diff --git a/modules/packetizer/h264_nal.h b/modules/packetizer/h264_nal.h
index d2183db..ba3647f 100644
--- a/modules/packetizer/h264_nal.h
+++ b/modules/packetizer/h264_nal.h
@@ -67,7 +67,7 @@ enum nal_unit_type_e
 enum sei_type_e
 {
     SEI_PIC_TIMING = 1,
-    SEI_USER_DATA_REGISTERED = 4,
+    SEI_USER_DATA_REGISTERED_ITU_T_T35 = 4,
     SEI_RECOVERY_POINT = 6
 };
 
    
    
More information about the vlc-commits
mailing list