1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-10-30 23:18:11 +02:00

avformat/dump: reduce indentation when printing streams within a group

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer
2024-09-27 19:41:29 -03:00
parent 545de54e3e
commit 9d265a9677

View File

@@ -602,8 +602,8 @@ static void dump_stream_format(const AVFormatContext *ic, int i,
const FFStream *const sti = cffstream(st);
const AVDictionaryEntry *lang = av_dict_get(st->metadata, "language", NULL, 0);
const char *separator = ic->dump_separator;
const char *group_indent = group_index >= 0 ? " " : "";
const char *extra_indent = group_index >= 0 ? " " : " ";
const char *group_indent = group_index >= 0 ? " " : "";
const char *extra_indent = group_index >= 0 ? " " : " ";
AVCodecContext *avctx;
int ret;