[FFmpeg-cvslog] avformat/dump: reduce indentation when printing streams within a group
James Almer
git at videolan.org
Sat Sep 28 01:46:13 EEST 2024
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Fri Sep 27 19:41:29 2024 -0300| [9d265a9677e6db314228c22c4bbedb4519383850] | committer: James Almer
avformat/dump: reduce indentation when printing streams within a group
Signed-off-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9d265a9677e6db314228c22c4bbedb4519383850
---
libavformat/dump.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavformat/dump.c b/libavformat/dump.c
index 0440a7a405..bc25e4dd0a 100644
--- a/libavformat/dump.c
+++ b/libavformat/dump.c
@@ -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;
More information about the ffmpeg-cvslog
mailing list