Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-09-13 19:00:41 +0400
committerDiego Biurrun <diego@biurrun.de>2011-09-21 11:57:32 +0400
commit95a06eb4d59c5ab0ce53b0cc9d10d1b26be939e2 (patch)
tree72ee6a36582f4653d51ce7a5240640b8b9d53594 /libavcodec/h264.c
parent35a68558688fb6fa62261008e93bd16544fbd37e (diff)
Fix assert() calls that need updates after FF_COMMON_FRAME macro elimination.
This fixes build failures with -DDEBUG in CPPFLAGS.
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index d0474489d9..9889224abd 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -2722,7 +2722,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0){
if (s0->first_field) {
assert(s0->current_picture_ptr);
assert(s0->current_picture_ptr->f.data[0]);
- assert(s0->current_picture_ptr->reference != DELAYED_PIC_REF);
+ assert(s0->current_picture_ptr->f.reference != DELAYED_PIC_REF);
/* figure out if we have a complementary field pair */
if (!FIELD_PICTURE || s->picture_structure == last_pic_structure) {