diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-05-22 19:24:59 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-07-10 17:07:05 +0200 |
commit | a67c061e0f3b55ffcc96f336fc0998e44b86c8e4 (patch) | |
tree | 28556abef85e00ac067db5e165c3676c98667ff7 /libavfilter | |
parent | 0b950fe240936fa48fd41204bcfd04f35bbf39c3 (diff) | |
download | ffmpeg-a67c061e0f3b55ffcc96f336fc0998e44b86c8e4.tar.gz |
lavf: add avformat_find_stream_info()
It supports passing options to codecs.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vsrc_movie.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vsrc_movie.c b/libavfilter/vsrc_movie.c index bd74f95545..b018ba7418 100644 --- a/libavfilter/vsrc_movie.c +++ b/libavfilter/vsrc_movie.c @@ -96,7 +96,7 @@ static int movie_init(AVFilterContext *ctx) "Failed to avformat_open_input '%s'\n", movie->file_name); return ret; } - if ((ret = av_find_stream_info(movie->format_ctx)) < 0) + if ((ret = avformat_find_stream_info(movie->format_ctx, NULL)) < 0) av_log(ctx, AV_LOG_WARNING, "Failed to find stream info\n"); // if seeking requested, we execute it |