Commit 944ad461 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'e8cafd27'

* commit 'e8cafd27':
  h264: Clear the mb members via memset instead of using dsputil

Conflicts:
	libavcodec/h264.c
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 3bc3c78a e8cafd27
......@@ -1676,6 +1676,10 @@ static int decode_update_thread_context(AVCodecContext *dst,
memset(&h->er, 0, sizeof(h->er));
memset(&h->me, 0, sizeof(h->me));
memset(&h->mb, 0, sizeof(h->mb));
memset(&h->mb_luma_dc, 0, sizeof(h->mb_luma_dc));
memset(&h->mb_padding, 0, sizeof(h->mb_padding));
h->avctx = dst;
h->DPB = NULL;
h->qscale_table_pool = NULL;
......
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