Skip to content
Snippets Groups Projects
Commit 2d7d91f0 authored by Michael Niedermayer's avatar Michael Niedermayer Committed by Martin Storsjö
Browse files

svq1enc: Set picture_structure correctly


This fixes assert failures when running in debug mode.

Signed-off-by: default avatarMartin Storsjö <martin@martin.st>
parent 91672504
No related branches found
No related tags found
No related merge requests found
...@@ -486,6 +486,7 @@ static av_cold int svq1_encode_init(AVCodecContext *avctx) ...@@ -486,6 +486,7 @@ static av_cold int svq1_encode_init(AVCodecContext *avctx)
s->avctx= avctx; s->avctx= avctx;
s->m.avctx= avctx; s->m.avctx= avctx;
s->m.picture_structure = PICT_FRAME;
s->m.me.temp = s->m.me.temp =
s->m.me.scratchpad= av_mallocz((avctx->width+64)*2*16*2*sizeof(uint8_t)); s->m.me.scratchpad= av_mallocz((avctx->width+64)*2*16*2*sizeof(uint8_t));
s->m.me.map = av_mallocz(ME_MAP_SIZE*sizeof(uint32_t)); s->m.me.map = av_mallocz(ME_MAP_SIZE*sizeof(uint32_t));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment