Commit 65c2fe71 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/h264: call flush_change() on init

This ensures that all the non zero fields get setup correctly.
Alternatively their initialization could be duplicated.

Fixes Ticket2738
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 5ac6b602
......@@ -50,6 +50,8 @@
#include <assert.h>
static void flush_change(H264Context *h);
const uint16_t ff_h264_mb_sizes[4] = { 256, 384, 512, 768 };
static const uint8_t rem6[QP_MAX_NUM + 1] = {
......@@ -1633,6 +1635,8 @@ av_cold int ff_h264_decode_init(AVCodecContext *avctx)
avctx->internal->allocate_progress = 1;
flush_change(h);
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment