Browse Source

Set avctx->coded_frame in RoQ encoder. At some point in

the SVN history this became mandated. Fix issue 548.

Originally committed as revision 14287 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Vitor Sessak 17 years ago
parent
commit
34e0d78936
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavcodec/roqvideoenc.c

+ 2
- 0
libavcodec/roqvideoenc.c View File

@@ -911,6 +911,8 @@ static void roq_encode_video(RoqContext *enc)
reconstruct_and_encode_image(enc, &tempData, enc->width, enc->height,
enc->width*enc->height/64);

enc->avctx->coded_frame = enc->current_frame;

/* Rotate frame history */
FFSWAP(AVFrame *, enc->current_frame, enc->last_frame);
FFSWAP(motion_vect *, enc->last_motion4, enc->this_motion4);


Loading…
Cancel
Save