diff mbox series

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

Message ID 20220421070114.167191-1-stefasab@gmail.com
State Accepted
Commit 7adeeff91f974ec5a69967dffe18331f666530eb
Headers show
Series [FFmpeg-devel] ffprobe: update entry index after printing packet/media type | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished
andriy/make_aarch64_jetson success Make finished
andriy/make_fate_aarch64_jetson success Make fate finished
andriy/make_armv7_RPi4 success Make finished
andriy/make_fate_armv7_RPi4 success Make fate finished

Commit Message

Stefano Sabatini April 21, 2022, 7:01 a.m. UTC
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(+)

Comments

Marton Balint June 8, 2022, 10:23 p.m. UTC | #1
On Thu, 21 Apr 2022, Stefano Sabatini wrote:

> 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);
> --

Thanks, applied.

Regards,
Marton
diff mbox series

Patch

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);