diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-01-03 18:48:45 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-01-04 02:30:48 +0100 |
commit | 4da2ac5c7a491b20be62ad19d77526e62aa57c69 (patch) | |
tree | 5a5cfa7f23f8333523ac47018e99f5980697d107 /libavcodec/h264.h | |
parent | b4b13848dec5420fa5dd9e1a7d4dfae5de1932d5 (diff) | |
download | ffmpeg-4da2ac5c7a491b20be62ad19d77526e62aa57c69.tar.gz |
avcodec/h264: Fix regression caused by removial of default_ref_list
This fixes a regression of the sample from Ticket 2371
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 5d9aecdba1..a5fc3a053f 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -669,6 +669,7 @@ typedef struct H264Context { */ int max_pic_num; + H264Ref default_ref[2]; H264Picture *short_ref[32]; H264Picture *long_ref[32]; H264Picture *delayed_pic[MAX_DELAYED_PIC_COUNT + 2]; // FIXME size? |