Browse Source

avformat/flvdec: Set need_context_update when setting the initial extradata

Fixes ticket 6398.

Debugged with the help of James Almer and Hendrik Leppkes.
tags/n3.4
Alex Converse 7 years ago
parent
commit
4d2b9ece45
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      libavformat/flvdec.c

+ 1
- 0
libavformat/flvdec.c View File

@@ -754,6 +754,7 @@ static int flv_get_extradata(AVFormatContext *s, AVStream *st, int size)
av_freep(&st->codecpar->extradata);
if (ff_get_extradata(s, st->codecpar, s->pb, size) < 0)
return AVERROR(ENOMEM);
st->internal->need_context_update = 1;
return 0;
}



Loading…
Cancel
Save