[FFmpeg-devel] [PATCH] ffprobe: update entry index after printing packet/media type

Stefano Sabatini stefasab at gmail.com
Thu Apr 21 10:01:14 EEST 2022


Fix JSON output in case a frame or packet section contains a nested section.

Fix trac issue http://trac.ffmpeg.org/ticket/8680.
---
 fftools/ffprobe.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c
index 05c167eeb5..803c1b07df 100644
--- a/fftools/ffprobe.c
+++ b/fftools/ffprobe.c
@@ -1566,6 +1566,7 @@ static void json_print_section_header(WriterContext *wctx)
                 if (!json->compact)
                     JSON_INDENT();
                 printf("\"type\": \"%s\"", section->name);
+                wctx->nb_item[wctx->level]++;
             }
         }
         av_bprint_finalize(&buf, NULL);
-- 
2.25.1



More information about the ffmpeg-devel mailing list