diff mbox series

[FFmpeg-devel,3/3] av_dump_format(): reduce indentation for streams

Message ID 20210127165104.30802-3-anton@khirnov.net
State Accepted
Commit b7251aed46f5ac96fe65c1c68ddac44b07429467
Headers show
Series [FFmpeg-devel,1/3] av_dump_format: add a heading for chapters | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate success Make fate finished
andriy/PPC64_make success Make finished
andriy/PPC64_make_fate success Make fate finished

Commit Message

Anton Khirnov Jan. 27, 2021, 4:51 p.m. UTC
Makes it easier to identify where metadata/chapters end and streams
begin.
---
 libavformat/dump.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/libavformat/dump.c b/libavformat/dump.c
index 5c8e8bc60d..62ef5e9852 100644
--- a/libavformat/dump.c
+++ b/libavformat/dump.c
@@ -543,7 +543,7 @@  FF_ENABLE_DEPRECATION_WARNINGS
     avcodec_string(buf, sizeof(buf), avctx, is_output);
     avcodec_free_context(&avctx);
 
-    av_log(NULL, AV_LOG_INFO, "    Stream #%d:%d", index, i);
+    av_log(NULL, AV_LOG_INFO, "  Stream #%d:%d", index, i);
 
     /* the pid is an important information, so we display it */
     /* XXX: add a generic system */