[FFmpeg-cvslog] fftools/ffprobe: fix printing AVFrame.crop_right

James Almer git at videolan.org
Fri Apr 21 15:26:44 EEST 2023


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Fri Apr 21 09:25:40 2023 -0300| [0e1745774ebd0ee077a66d4122ab2c810a01ec05] | committer: James Almer

fftools/ffprobe: fix printing AVFrame.crop_right

Signed-off-by: James Almer <jamrial at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0e1745774ebd0ee077a66d4122ab2c810a01ec05
---

 fftools/ffprobe.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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");



More information about the ffmpeg-cvslog mailing list