Browse Source

ffprobe: remove usage of deprecated getter functions

Signed-off-by: James Almer <jamrial@gmail.com>
tags/n4.0
James Almer 8 years ago
parent
commit
ddd0b19169
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      fftools/ffprobe.c

+ 1
- 1
fftools/ffprobe.c View File

@@ -2792,7 +2792,7 @@ static int show_format(WriterContext *w, InputFile *ifile)
else print_str_opt("size", "N/A");
if (fmt_ctx->bit_rate > 0) print_val ("bit_rate", fmt_ctx->bit_rate, unit_bit_per_second_str);
else print_str_opt("bit_rate", "N/A");
print_int("probe_score", av_format_get_probe_score(fmt_ctx));
print_int("probe_score", fmt_ctx->probe_score);
if (do_show_format_tags)
ret = show_tags(w, fmt_ctx->metadata, SECTION_ID_FORMAT_TAGS);



Loading…
Cancel
Save