diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-09-01 14:42:00 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-09-05 20:32:12 +0200 |
commit | 5c16df1b92c519238e10664eeab3adb3b9016edd (patch) | |
tree | 29d3df853379b45ed1daa8409e2f4f7d68821e84 /fftools/ffprobe.c | |
parent | e6d89d0efd9194198d9964e47bf428be222594ea (diff) | |
download | ffmpeg-5c16df1b92c519238e10664eeab3adb3b9016edd.tar.gz |
fftools/ffprobe: Report initial and trailing padding
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'fftools/ffprobe.c')
-rw-r--r-- | fftools/ffprobe.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c index 3344a06409..8ee1b1036c 100644 --- a/fftools/ffprobe.c +++ b/fftools/ffprobe.c @@ -3044,6 +3044,8 @@ 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); break; case AVMEDIA_TYPE_SUBTITLE: |