X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=ffprobe.c;h=4a7ec0ad3111ceda9c74cff3e247cb25f4d2ca5b;hb=2da66630dce7a21b26bca8e47714a555bdb28a53;hp=17dc73294fe443e0a628ca895022eb8d65c4f62c;hpb=67e2ba36ec5096a875e377fa1703c535e7eef081;p=ffmpeg diff --git a/ffprobe.c b/ffprobe.c index 17dc73294fe..4a7ec0ad311 100644 --- a/ffprobe.c +++ b/ffprobe.c @@ -1777,7 +1777,6 @@ static void print_pkt_side_data(WriterContext *w, writer_print_section_header(w, SECTION_ID_STREAM_SIDE_DATA); print_str("side_data_type", name ? name : "unknown"); - print_int("side_data_size", sd->size); if (sd->type == AV_PKT_DATA_DISPLAYMATRIX && sd->size >= 9*4) { writer_print_integers(w, "displaymatrix", sd->data, 9, " %11d", 3, 4, 1); print_int("rotation", av_display_rotation_get((int32_t *)sd->data)); @@ -1970,7 +1969,6 @@ static void show_frame(WriterContext *w, AVFrame *frame, AVStream *stream, writer_print_section_header(w, SECTION_ID_FRAME_SIDE_DATA); name = av_frame_side_data_name(sd->type); print_str("side_data_type", name ? name : "unknown"); - print_int("side_data_size", sd->size); if (sd->type == AV_FRAME_DATA_DISPLAYMATRIX && sd->size >= 9*4) { writer_print_integers(w, "displaymatrix", sd->data, 9, " %11d", 3, 4, 1); print_int("rotation", av_display_rotation_get((int32_t *)sd->data));