diff mbox series

[FFmpeg-devel] trailing padding

Message ID CAPYw7P7GAg2mn0kk0-SwuweTBPah4t6K0A+Jo51ahB7t1S4P-Q@mail.gmail.com
State New
Headers show
Series [FFmpeg-devel] trailing padding | expand

Checks

Context Check Description
yinshiyou/configure_loongarch64 warning Failed to apply patch
andriy/make_x86 success Make finished
andriy/make_fate_x86 fail Make fate failed

Commit Message

Paul B Mahol Jan. 12, 2023, 9:41 a.m. UTC
Patches attached, ffmpeg.c should really not ignore initial padding
and trailing padding.

Comments

Paul B Mahol Jan. 15, 2023, 10:23 a.m. UTC | #1
On 1/12/23, Paul B Mahol <onemda@gmail.com> wrote:
> Patches attached, ffmpeg.c should really not ignore initial padding
> and trailing padding.
>


Will apply.
Tobias Rapp Jan. 16, 2023, 1:10 p.m. UTC | #2
On 12/01/2023 10:41, Paul B Mahol wrote:

> Patches attached, ffmpeg.c should really not ignore initial padding
> and trailing padding.

I guess ffprobe.xsd should be updated, too. Did you run FATE?

Regards, Tobias
Paul B Mahol Jan. 21, 2023, 4:17 p.m. UTC | #3
On 1/16/23, Tobias Rapp <t.rapp@noa-archive.com> wrote:
> On 12/01/2023 10:41, Paul B Mahol wrote:
>
>> Patches attached, ffmpeg.c should really not ignore initial padding
>> and trailing padding.
>
> I guess ffprobe.xsd should be updated, too. Did you run FATE?
>

Yes, it should be eventually updated.
diff mbox series

Patch

From 65df8c3945445c0bf80e947b02ef57df7ee34bb5 Mon Sep 17 00:00:00 2001
From: Paul B Mahol <onemda@gmail.com>
Date: Thu, 12 Jan 2023 10:07:15 +0100
Subject: [PATCH 2/2] fftools/ffprobe: show trailing_padding too

Signed-off-by: Paul B Mahol <onemda@gmail.com>
---
 fftools/ffprobe.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c
index c18aee9846..30b786d074 100644
--- a/fftools/ffprobe.c
+++ b/fftools/ffprobe.c
@@ -3055,6 +3055,7 @@  static int show_stream(WriterContext *w, AVFormatContext *fmt_ctx, int stream_id
         print_int("bits_per_sample", av_get_bits_per_sample(par->codec_id));
 
         print_int("initial_padding", par->initial_padding);
+        print_int("trailing_padding", par->trailing_padding);
         break;
 
     case AVMEDIA_TYPE_SUBTITLE:
-- 
2.37.2