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:
authorJames Almer <jamrial@gmail.com>2017-03-25 19:47:15 +0300
committerJames Almer <jamrial@gmail.com>2017-03-30 03:20:06 +0300
commitc14b3ea93c4f009a25ffa82452b5cf8b36a1bbbe (patch)
treebd20bae928328dd58190f0b77cdf4e395008b1d8 /ffprobe.c
parentb5e1ec5660692d7cee360da3ed0434d3b46f40d5 (diff)
ffprobe: fix printing packet side data information
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffprobe.c b/ffprobe.c
index 77ea3494d2..fa60894833 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -1856,12 +1856,12 @@ static void print_pkt_side_data(WriterContext *w,
{
int i;
- writer_print_section_header(w, SECTION_ID_STREAM_SIDE_DATA_LIST);
+ writer_print_section_header(w, id_data_list);
for (i = 0; i < nb_side_data; i++) {
const AVPacketSideData *sd = &side_data[i];
const char *name = av_packet_side_data_name(sd->type);
- writer_print_section_header(w, SECTION_ID_STREAM_SIDE_DATA);
+ writer_print_section_header(w, id_data);
print_str("side_data_type", name ? name : "unknown");
if (sd->type == AV_PKT_DATA_DISPLAYMATRIX && sd->size >= 9*4) {
writer_print_integers(w, "displaymatrix", sd->data, 9, " %11d", 3, 4, 1);