Browse Source

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>
tags/n3.2
Dmitry Vagin Michael Niedermayer 9 years ago
parent
commit
dc151d138c
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      ffprobe.c

+ 1
- 0
ffprobe.c View File

@@ -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)) {


Loading…
Cancel
Save