diff options
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 4879e67..ec19933 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -2120,6 +2120,8 @@ static av_cold void common_init(H264Context *h){ s->unrestricted_mv=1; s->decode=1; //FIXME + dsputil_init(&s->dsp, s->avctx); // needed so that idct permutation is known early + memset(h->pps.scaling_matrix4, 16, 6*16*sizeof(uint8_t)); memset(h->pps.scaling_matrix8, 16, 2*64*sizeof(uint8_t)); } |