summaryrefslogtreecommitdiff
path: root/libavcodec/h264_sei.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/h264_sei.c')
-rw-r--r--libavcodec/h264_sei.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_sei.c b/libavcodec/h264_sei.c
index 999fce7b34..2af9079f37 100644
--- a/libavcodec/h264_sei.c
+++ b/libavcodec/h264_sei.c
@@ -149,7 +149,7 @@ static int decode_unregistered_user_data(H264Context *h, int size){
}
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))