[FFmpeg-cvslog] r14400 - trunk/libavcodec/h264.c
michael
subversion
Sat Jul 26 00:39:43 CEST 2008
Author: michael
Date: Sat Jul 26 00:39:43 2008
New Revision: 14400
Log:
Remove another stupidity, long_ref==0 check 4 lines after assert(long_ref==0).
Modified:
trunk/libavcodec/h264.c
Modified: trunk/libavcodec/h264.c
==============================================================================
--- trunk/libavcodec/h264.c (original)
+++ trunk/libavcodec/h264.c Sat Jul 26 00:39:43 2008
@@ -2956,7 +2956,7 @@ static int decode_ref_pic_list_reorderin
if(ref->data[0] != NULL &&
ref->frame_num == frame_num &&
(ref->reference & pic_structure) &&
- ref->long_ref == 0) // ignore non-existing pictures by testing data[0] pointer
+ ) // ignore non-existing pictures by testing data[0] pointer
break;
}
if(i>=0)
More information about the ffmpeg-cvslog
mailing list