diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-07-25 22:39:43 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-07-25 22:39:43 +0000 |
commit | 91ea868eebe764a25043ddc598751fb322886954 (patch) | |
tree | 5872a7930dd55c45a8dcec5b2398d0ac2a11823b /libavcodec | |
parent | b3e93fd408529f86e6c63c8771a74947eaf75b6c (diff) | |
download | ffmpeg-91ea868eebe764a25043ddc598751fb322886954.tar.gz |
Remove another stupidity, long_ref==0 check 4 lines after assert(long_ref==0).
Originally committed as revision 14400 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 30f332323c..e87157ce46 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -2956,7 +2956,7 @@ static int decode_ref_pic_list_reordering(H264Context *h){ 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) |