Commit c1daa68b authored by michael's avatar michael

Ignore x264 build=0 as there is no such version, this restores previous

behavior approximately.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22628 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent bdae3916
......@@ -109,7 +109,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);
if(e==1 && build>=0)
if(e==1 && build>0)
h->x264_build= build;
if(s->avctx->debug & FF_DEBUG_BUGS)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment