X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fparser.c;h=30cfc55cbcb7f1525ceff13f67754e4be115a986;hb=fd00203554334f602ee1d7c5416ff25f356f4fb7;hp=2c8fc6904727c2684cec9519945972386c5e70ee;hpb=da76175d681246b07d526a395552edc020f0f4d9;p=ffmpeg diff --git a/libavcodec/parser.c b/libavcodec/parser.c index 2c8fc690472..30cfc55cbcb 100644 --- a/libavcodec/parser.c +++ b/libavcodec/parser.c @@ -182,6 +182,11 @@ int av_parser_parse2(AVCodecParserContext *s, AVCodecContext *avctx, index = s->parser->parser_parse(s, avctx, (const uint8_t **) poutbuf, poutbuf_size, buf, buf_size); av_assert0(index > -0x20000000); // The API does not allow returning AVERROR codes +#define FILL(name) if(s->name > 0 && avctx->name <= 0) avctx->name = s->name + if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) { + FILL(field_order); + } + /* update the file pointer */ if (*poutbuf_size) { /* fill the data for the current frame */