summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-07-25 22:42:49 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-07-25 22:42:49 +0000
commit99157e499c132444bab019519e4e17e5bc177c8e (patch)
tree013ec34e8322fb196ae64ed581c65a7ec815fb3e /libavcodec
parent91ea868eebe764a25043ddc598751fb322886954 (diff)
10l typo, fix compilation
Originally committed as revision 14401 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/h264.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index e87157ce46..4131ae9fa1 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -2955,7 +2955,7 @@ static int decode_ref_pic_list_reordering(H264Context *h){
assert(!ref->long_ref);
if(ref->data[0] != NULL &&
ref->frame_num == frame_num &&
- (ref->reference & pic_structure) &&
+ (ref->reference & pic_structure)
) // ignore non-existing pictures by testing data[0] pointer
break;
}