]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/parser.c
avcodec/flacdec: Check for invalid vlcs
[ffmpeg] / libavcodec / parser.c
index 2c8fc6904727c2684cec9519945972386c5e70ee..30cfc55cbcb7f1525ceff13f67754e4be115a986 100644 (file)
@@ -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 */