You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
ffprobe: reindent after previous commit
This commit is contained in:
committed by
Clément Bœsch
parent
8e0d5b354e
commit
dad54e3c29
17
ffprobe.c
17
ffprobe.c
@@ -2807,17 +2807,16 @@ static int open_input_file(InputFile *ifile, const char *filename)
|
|||||||
AVDictionary **opts = setup_find_stream_info_opts(fmt_ctx, codec_opts);
|
AVDictionary **opts = setup_find_stream_info_opts(fmt_ctx, codec_opts);
|
||||||
int orig_nb_streams = fmt_ctx->nb_streams;
|
int orig_nb_streams = fmt_ctx->nb_streams;
|
||||||
|
|
||||||
// TODO: reindent
|
err = avformat_find_stream_info(fmt_ctx, opts);
|
||||||
err = avformat_find_stream_info(fmt_ctx, opts);
|
|
||||||
|
|
||||||
for (i = 0; i < orig_nb_streams; i++)
|
for (i = 0; i < orig_nb_streams; i++)
|
||||||
av_dict_free(&opts[i]);
|
av_dict_free(&opts[i]);
|
||||||
av_freep(&opts);
|
av_freep(&opts);
|
||||||
|
|
||||||
if (err < 0) {
|
if (err < 0) {
|
||||||
print_error(filename, err);
|
print_error(filename, err);
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
av_dump_format(fmt_ctx, 0, filename, 0);
|
av_dump_format(fmt_ctx, 0, filename, 0);
|
||||||
|
Reference in New Issue
Block a user