]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/lavfutils.c
avcodec/mpeg12dec: drop confusing av_dlog()
[ffmpeg] / libavfilter / lavfutils.c
index 58d98cfdb688d7b3d25976f2e0f9daf2318c3384..93f1ef331d0e514d92d7b4b353c4704d33ab6ff7 100644 (file)
@@ -44,6 +44,11 @@ int ff_load_image(uint8_t *data[4], int linesize[4],
         return ret;
     }
 
+    if ((ret = avformat_find_stream_info(format_ctx, NULL)) < 0) {
+        av_log(log_ctx, AV_LOG_ERROR, "Find stream info failed\n");
+        return ret;
+    }
+
     codec_ctx = format_ctx->streams[0]->codec;
     codec = avcodec_find_decoder(codec_ctx->codec_id);
     if (!codec) {