diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-02-06 17:26:38 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-02-09 19:03:32 +0100 |
commit | 8a07429318acfbf497981a0ba1f68e2966ce3fdf (patch) | |
tree | 49cae93fcffbbe7dfc08b66d6e4b3fcbb2aabb14 /libavformat/utils.c | |
parent | f480fcb1f965d1f77b139db4de254e6bbd2e9abc (diff) | |
download | ffmpeg-8a07429318acfbf497981a0ba1f68e2966ce3fdf.tar.gz |
lavf: put av_find_stream_info() compatibility wrapper back.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index d974ccd0cd..7988f2708b 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2246,6 +2246,13 @@ static int tb_unreliable(AVCodecContext *c){ return 0; } +#if FF_API_FORMAT_PARAMETERS +int av_find_stream_info(AVFormatContext *ic) +{ + return avformat_find_stream_info(ic, NULL); +} +#endif + int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options) { int i, count, ret, read_size, j; |