Browse Source

fix "first frame is no keyframe" bug

Originally committed as revision 2388 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 22 years ago
parent
commit
bcc7125e1d
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavcodec/h263dec.c

+ 3
- 0
libavcodec/h263dec.c View File

@@ -609,7 +609,10 @@ retry:
if ( s->width != avctx->width || s->height != avctx->height
|| ABS(new_aspect - avctx->aspect_ratio) > 0.001) {
/* H.263 could change picture size any time */
ParseContext pc= s->parse_context; //FIXME move these demuxng hack to avformat
s->parse_context.buffer=0;
MPV_common_end(s);
s->parse_context= pc;
}
if (!s->context_initialized) {
avctx->width = s->width;


Loading…
Cancel
Save