1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

fftools/ffprobe: fix printing AVFrame.crop_right

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer
2023-04-21 09:25:40 -03:00
parent 4570ba5d86
commit 0e1745774e

View File

@@ -2623,7 +2623,7 @@ static void show_frame(WriterContext *w, AVFrame *frame, AVStream *stream,
print_int("crop_top", frame->crop_top); print_int("crop_top", frame->crop_top);
print_int("crop_bottom", frame->crop_bottom); print_int("crop_bottom", frame->crop_bottom);
print_int("crop_left", frame->crop_left); print_int("crop_left", frame->crop_left);
print_int("crop_right", frame->crop_left); print_int("crop_right", frame->crop_right);
s = av_get_pix_fmt_name(frame->format); s = av_get_pix_fmt_name(frame->format);
if (s) print_str ("pix_fmt", s); if (s) print_str ("pix_fmt", s);
else print_str_opt("pix_fmt", "unknown"); else print_str_opt("pix_fmt", "unknown");