Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Vagin <daemon-hammer@ya.ru>2016-07-22 08:52:00 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2016-07-26 20:22:47 +0300
commitdc151d138c9e7e59acdffb7bea11ab6dcea3b380 (patch)
tree472aac5fed5b5b420fcc511d6688bf405997bcb1 /ffprobe.c
parentfb91850fe11f9e727b405a92c134b07bdc277921 (diff)
ffprobe: add missing PROGRAM_STREAM_TAGS case
ffprobe did not show tags with only '-show_entries programs' Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ffprobe.c b/ffprobe.c
index b9c3760384..a49be6a3f8 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -3277,6 +3277,7 @@ int main(int argc, char **argv)
SET_DO_SHOW(FRAME_TAGS, frame_tags);
SET_DO_SHOW(PROGRAM_TAGS, program_tags);
SET_DO_SHOW(STREAM_TAGS, stream_tags);
+ SET_DO_SHOW(PROGRAM_STREAM_TAGS, stream_tags);
SET_DO_SHOW(PACKET_TAGS, packet_tags);
if (do_bitexact && (do_show_program_version || do_show_library_versions)) {