Commit af50fbaa authored by Clément Bœsch's avatar Clément Bœsch Committed by Clément Bœsch

ffplay: reindent after previous commit

parent 998687f1
...@@ -2749,19 +2749,18 @@ static int read_thread(void *arg) ...@@ -2749,19 +2749,18 @@ static int read_thread(void *arg)
AVDictionary **opts = setup_find_stream_info_opts(ic, codec_opts); AVDictionary **opts = setup_find_stream_info_opts(ic, codec_opts);
int orig_nb_streams = ic->nb_streams; int orig_nb_streams = ic->nb_streams;
// TODO: reindent err = avformat_find_stream_info(ic, opts);
err = avformat_find_stream_info(ic, 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) {
av_log(NULL, AV_LOG_WARNING, av_log(NULL, AV_LOG_WARNING,
"%s: could not find codec parameters\n", is->filename); "%s: could not find codec parameters\n", is->filename);
ret = -1; ret = -1;
goto fail; goto fail;
} }
} }
if (ic->pb) if (ic->pb)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment