mirror of https://git.ffmpeg.org/ffmpeg.git
png_parser: dont falsely mark frames as keyframes
Fixes Ticket1381 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
5665674b55
commit
82570d2f09
|
@ -45,6 +45,8 @@ static int png_parse(AVCodecParserContext *s, AVCodecContext *avctx,
|
||||||
int next = END_NOT_FOUND;
|
int next = END_NOT_FOUND;
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
|
||||||
|
s->pict_type = AV_PICTURE_TYPE_NONE;
|
||||||
|
|
||||||
*poutbuf_size = 0;
|
*poutbuf_size = 0;
|
||||||
if (buf_size == 0)
|
if (buf_size == 0)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue