diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-08-26 16:41:50 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-17 13:44:46 +0200 |
commit | a55ce5baf34fe84a2af8be0464b8bc23e915bae7 (patch) | |
tree | c477c9be20cdfd0b3f1a636141a2611f4cf0a7eb /libavformat/utils.c | |
parent | 40bdd8cc05d9c98a18cf2b1c2a00c8a5a7b38113 (diff) | |
download | ffmpeg-a55ce5baf34fe84a2af8be0464b8bc23e915bae7.tar.gz |
avformat/utils: Reindentation
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 8826987dad..e228047107 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -4289,19 +4289,19 @@ static void free_stream(AVStream **pst) if (st->attached_pic.data) av_packet_unref(&st->attached_pic); - av_parser_close(sti->parser); - avcodec_free_context(&sti->avctx); - av_bsf_free(&sti->bsfc); - av_freep(&sti->priv_pts); - av_freep(&sti->index_entries); - av_freep(&sti->probe_data.buf); + av_parser_close(sti->parser); + avcodec_free_context(&sti->avctx); + av_bsf_free(&sti->bsfc); + av_freep(&sti->priv_pts); + av_freep(&sti->index_entries); + av_freep(&sti->probe_data.buf); - av_bsf_free(&sti->extract_extradata.bsf); + av_bsf_free(&sti->extract_extradata.bsf); - if (sti->info) { - av_freep(&sti->info->duration_error); + if (sti->info) { + av_freep(&sti->info->duration_error); av_freep(&sti->info); - } + } av_dict_free(&st->metadata); avcodec_parameters_free(&st->codecpar); |