[FFmpeg-cvslog] lavfi/drawbox: fix width displayed in place of x.
Clément Bœsch
git at videolan.org
Fri Apr 13 23:16:18 CEST 2012
ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Fri Apr 13 23:11:39 2012 +0200| [3f80546d75011e40eec73d376cbdb6e238e602b9] | committer: Clément Bœsch
lavfi/drawbox: fix width displayed in place of x.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3f80546d75011e40eec73d376cbdb6e238e602b9
---
libavfilter/vf_drawbox.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavfilter/vf_drawbox.c b/libavfilter/vf_drawbox.c
index 62a957f..4d9bae4 100644
--- a/libavfilter/vf_drawbox.c
+++ b/libavfilter/vf_drawbox.c
@@ -85,7 +85,7 @@ static int config_input(AVFilterLink *inlink)
if (drawbox->h == 0) drawbox->h = inlink->h;
av_log(inlink->dst, AV_LOG_INFO, "x:%d y:%d w:%d h:%d color:0x%02X%02X%02X%02X\n",
- drawbox->w, drawbox->y, drawbox->w, drawbox->h,
+ drawbox->x, drawbox->y, drawbox->w, drawbox->h,
drawbox->yuv_color[Y], drawbox->yuv_color[U], drawbox->yuv_color[V], drawbox->yuv_color[A]);
return 0;
More information about the ffmpeg-cvslog
mailing list