diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-08-26 17:40:07 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-08-26 17:40:07 +0200 |
commit | c960e67ad0f6b318a5f229bb662c899e7e7570d8 (patch) | |
tree | 06a910110a22a49f13601074ad446532cde22150 /libavformat | |
parent | 5f677aac7687a5ceac45b53be5e8fe6ebf07c34d (diff) | |
download | ffmpeg-c960e67ad0f6b318a5f229bb662c899e7e7570d8.tar.gz |
Replace deprecated av_find_stream_info() by avformat_find_stream_info().
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/seek-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/seek-test.c b/libavformat/seek-test.c index 71b2a2d6c0..3dd60dc160 100644 --- a/libavformat/seek-test.c +++ b/libavformat/seek-test.c @@ -86,7 +86,7 @@ int main(int argc, char **argv) exit(1); } - ret = av_find_stream_info(ic); + ret = avformat_find_stream_info(ic, NULL); if (ret < 0) { fprintf(stderr, "%s: could not find codec parameters\n", filename); exit(1); |