mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-03 06:27:44 +08:00
DV video encoder/decoder doesn't set keyframe and picture type properties patch by (Edward Hervey:bilboed,gmail com)
Originally committed as revision 4503 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:

committed by
Michael Niedermayer

parent
cf1cb7a8db
commit
856170f752
@ -897,6 +897,8 @@ static int dvvideo_decode_frame(AVCodecContext *avctx,
|
|||||||
avctx->release_buffer(avctx, &s->picture);
|
avctx->release_buffer(avctx, &s->picture);
|
||||||
|
|
||||||
s->picture.reference = 0;
|
s->picture.reference = 0;
|
||||||
|
s->picture.key_frame = 1;
|
||||||
|
s->picture.pict_type = FF_I_TYPE;
|
||||||
avctx->pix_fmt = s->sys->pix_fmt;
|
avctx->pix_fmt = s->sys->pix_fmt;
|
||||||
avctx->width = s->sys->width;
|
avctx->width = s->sys->width;
|
||||||
avctx->height = s->sys->height;
|
avctx->height = s->sys->height;
|
||||||
@ -933,6 +935,8 @@ static int dvvideo_encode_frame(AVCodecContext *c, uint8_t *buf, int buf_size,
|
|||||||
|
|
||||||
c->pix_fmt = s->sys->pix_fmt;
|
c->pix_fmt = s->sys->pix_fmt;
|
||||||
s->picture = *((AVFrame *)data);
|
s->picture = *((AVFrame *)data);
|
||||||
|
s->picture.key_frame = 1;
|
||||||
|
s->picture.pict_type = FF_I_TYPE;
|
||||||
|
|
||||||
s->buf = buf;
|
s->buf = buf;
|
||||||
c->execute(c, dv_encode_mt, (void**)&dv_anchor[0], NULL,
|
c->execute(c, dv_encode_mt, (void**)&dv_anchor[0], NULL,
|
||||||
|
Reference in New Issue
Block a user