mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-14 11:00:08 +01:00
fftools/ffprobe: print EXIF side data size
We don't need to print the tags here because they're added as dict elements to AVFrame->metadata and are printed elsewhere with ffprobe -show_frames. Signed-off-by: Leo Izen <leo.izen@gmail.com>
This commit is contained in:
@@ -1342,6 +1342,8 @@ static void print_frame_side_data(AVTextFormatContext *tfc,
|
|||||||
print_film_grain_params(tfc, fgp);
|
print_film_grain_params(tfc, fgp);
|
||||||
} else if (sd->type == AV_FRAME_DATA_VIEW_ID) {
|
} else if (sd->type == AV_FRAME_DATA_VIEW_ID) {
|
||||||
print_int("view_id", *(int*)sd->data);
|
print_int("view_id", *(int*)sd->data);
|
||||||
|
} else if (sd->type == AV_FRAME_DATA_EXIF) {
|
||||||
|
print_int("size", sd->size);
|
||||||
}
|
}
|
||||||
avtext_print_section_footer(tfc);
|
avtext_print_section_footer(tfc);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -34,6 +34,7 @@ TAG:ExifIFD/UserComment=AppleMark
|
|||||||
|
|
||||||
[SIDE_DATA]
|
[SIDE_DATA]
|
||||||
side_data_type=EXIF metadata
|
side_data_type=EXIF metadata
|
||||||
|
size=55
|
||||||
[/SIDE_DATA]
|
[/SIDE_DATA]
|
||||||
[/FRAME]
|
[/FRAME]
|
||||||
[FRAME]
|
[FRAME]
|
||||||
|
|||||||
@@ -199,5 +199,6 @@ TAG:ExifIFD/DigitalZoomRatio= 4000:4000
|
|||||||
TAG:ExifIFD/SceneCaptureType= 0
|
TAG:ExifIFD/SceneCaptureType= 0
|
||||||
[SIDE_DATA]
|
[SIDE_DATA]
|
||||||
side_data_type=EXIF metadata
|
side_data_type=EXIF metadata
|
||||||
|
size=3297
|
||||||
[/SIDE_DATA]
|
[/SIDE_DATA]
|
||||||
[/FRAME]
|
[/FRAME]
|
||||||
|
|||||||
@@ -54,5 +54,6 @@ TAG:ResolutionUnit= 3
|
|||||||
TAG:Software=ImageMagick 6.5.8-0 2010-02-09 Q16 http://www.imagemagick.org
|
TAG:Software=ImageMagick 6.5.8-0 2010-02-09 Q16 http://www.imagemagick.org
|
||||||
[SIDE_DATA]
|
[SIDE_DATA]
|
||||||
side_data_type=EXIF metadata
|
side_data_type=EXIF metadata
|
||||||
|
size=403
|
||||||
[/SIDE_DATA]
|
[/SIDE_DATA]
|
||||||
[/FRAME]
|
[/FRAME]
|
||||||
|
|||||||
@@ -199,5 +199,6 @@ TAG:ExifIFD/DigitalZoomRatio= 4000:4000
|
|||||||
TAG:ExifIFD/SceneCaptureType= 0
|
TAG:ExifIFD/SceneCaptureType= 0
|
||||||
[SIDE_DATA]
|
[SIDE_DATA]
|
||||||
side_data_type=EXIF metadata
|
side_data_type=EXIF metadata
|
||||||
|
size=9718
|
||||||
[/SIDE_DATA]
|
[/SIDE_DATA]
|
||||||
[/FRAME]
|
[/FRAME]
|
||||||
|
|||||||
Reference in New Issue
Block a user