diff options
author | softworkz <softworkz@hotmail.com> | 2021-11-25 04:01:23 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2021-11-29 21:30:11 +0100 |
commit | 939711905a3674684a13635828e6784ebb7d1cde (patch) | |
tree | 1e0c4376f254df49f18b140d5e1c971836fe46c0 /fftools | |
parent | 1c2dae153cd6574252fbcf60fb3782440ef43056 (diff) | |
download | ffmpeg-939711905a3674684a13635828e6784ebb7d1cde.tar.gz |
fftools/ffprobe: print size of attachment streams (extradata_size)
Signed-off-by: softworkz <softworkz@hotmail.com>
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'fftools')
-rw-r--r-- | fftools/ffprobe.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c index 169c26b65c..0711e02922 100644 --- a/fftools/ffprobe.c +++ b/fftools/ffprobe.c @@ -2769,6 +2769,7 @@ static int show_stream(WriterContext *w, AVFormatContext *fmt_ctx, int stream_id par->extradata_size); if (par->extradata_size > 0) { + print_int("extradata_size", par->extradata_size); writer_print_data_hash(w, "extradata_hash", par->extradata, par->extradata_size); } |