]> git.sesse.net Git - ffmpeg/commitdiff
Merge commit '4c7fd58f8ae729b964b6859eace5ab9a55ce3c8c'
authorMichael Niedermayer <michaelni@gmx.at>
Fri, 2 Aug 2013 10:23:47 +0000 (12:23 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 2 Aug 2013 10:23:52 +0000 (12:23 +0200)
* commit '4c7fd58f8ae729b964b6859eace5ab9a55ce3c8c':
  h264_sei: Remove pointless old comment
  twinvq: Add proper twinvq prefixes to identifiers

Merged-by: Michael Niedermayer <michaelni@gmx.at>
1  2 
libavcodec/h264_sei.c
libavcodec/twinvq.c

index 999fce7b349fc51a65d9a1ca3b0c649e6205fce5,c88f203096695b24910e7e250bdbe3a0e2bd6e92..2af9079f37c26446b4288f01b89b4a283175542f
@@@ -149,11 -106,9 +149,11 @@@ static int decode_unregistered_user_dat
      }
  
      user_data[i]= 0;
-     e= sscanf(user_data+16, "x264 - core %d"/*%s - H.264/MPEG-4 AVC codec - Copyleft 2005 - http://www.videolan.org/x264.html*/, &build);
+     e = sscanf(user_data + 16, "x264 - core %d", &build);
      if(e==1 && build>0)
          h->x264_build= build;
 +    if(e==1 && build==1 && !strncmp(user_data+16, "x264 - core 0000", 16))
 +        h->x264_build = 67;
  
      if(h->avctx->debug & FF_DEBUG_BUGS)
          av_log(h->avctx, AV_LOG_DEBUG, "user data:\"%s\"\n", user_data+16);
Simple merge