Browse Source

ffprobe: fix deprecated call to av_find_stream_info.

tags/n0.9
Clément Bœsch 14 years ago
parent
commit
8af9366e2f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ffprobe.c

+ 1
- 1
ffprobe.c View File

@@ -276,7 +276,7 @@ static int open_input_file(AVFormatContext **fmt_ctx_ptr, const char *filename)


/* fill the streams in the format context */
if ((err = av_find_stream_info(fmt_ctx)) < 0) {
if ((err = avformat_find_stream_info(fmt_ctx, NULL)) < 0) {
print_error(filename, err);
return err;
}


Loading…
Cancel
Save