summaryrefslogtreecommitdiff
path: root/libavcodec/h264_sei.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-07-31 18:07:53 +0200
committerDiego Biurrun <diego@biurrun.de>2013-08-01 13:26:07 +0200
commit4c7fd58f8ae729b964b6859eace5ab9a55ce3c8c (patch)
treea2df35ec4c4a0bf35927cd8f9d392d8f305d7bd4 /libavcodec/h264_sei.c
parent9ea24e927e5bc76a39230434e0f534f9906cd11a (diff)
h264_sei: Remove pointless old comment
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 df4c49fe3e..c88f203096 100644
--- a/libavcodec/h264_sei.c
+++ b/libavcodec/h264_sei.c
@@ -106,7 +106,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;