aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2023-04-21 09:25:40 -0300
committerJames Almer <jamrial@gmail.com>2023-04-21 09:25:53 -0300
commit0e1745774ebd0ee077a66d4122ab2c810a01ec05 (patch)
tree17679dc3c2a5406b8764bac3a311e9b4d65fa050
parent4570ba5d86784f6a49e49e6cddfb0d5fb4bcd39a (diff)
downloadffmpeg-0e1745774ebd0ee077a66d4122ab2c810a01ec05.tar.gz
fftools/ffprobe: fix printing AVFrame.crop_right
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r--fftools/ffprobe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c
index d6e5a79c7e..6e72c37721 100644
--- a/fftools/ffprobe.c
+++ b/fftools/ffprobe.c
@@ -2623,7 +2623,7 @@ static void show_frame(WriterContext *w, AVFrame *frame, AVStream *stream,
print_int("crop_top", frame->crop_top);
print_int("crop_bottom", frame->crop_bottom);
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);
if (s) print_str ("pix_fmt", s);
else print_str_opt("pix_fmt", "unknown");