Commit 8a074293 authored by Michael Niedermayer's avatar Michael Niedermayer

lavf: put av_find_stream_info() compatibility wrapper back.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent f480fcb1
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment