Browse Source

lavf: put av_find_stream_info() compatibility wrapper back.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11
Michael Niedermayer 14 years ago
parent
commit
8a07429318
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      libavformat/utils.c

+ 7
- 0
libavformat/utils.c View File

@@ -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;


Loading…
Cancel
Save