mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
fftools/ffprobe: fix printing AVFrame.crop_right
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
4570ba5d86
commit
0e1745774e
1 changed files with 1 additions and 1 deletions
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue