summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2011-12-24 16:17:18 +0100
committerStefano Sabatini <stefasab@gmail.com>2012-01-04 00:25:55 +0100
commit103cb461b0fad88dd48a0234e0e0609825e85caa (patch)
treea025b09148d0013b60aaa70f7b59ce4c1d87aca1
parent7e97d98033d18146070218bf30c8ee83a80b9748 (diff)
downloadffmpeg-103cb461b0fad88dd48a0234e0e0609825e85caa.tar.gz
vf_drawtext: select YUV color for drawbox() in case YUV colorspace is used
Fix box alpha rendering when a YUV colorspace is selected, in particular fix trac ticket #763. (cherry picked from commit 1858a5c25ee1ccb8089339d20138116a46cc6c77)
-rw-r--r--libavfilter/vf_drawtext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_drawtext.c b/libavfilter/vf_drawtext.c
index 912a8547bb..bf43ea9ed1 100644
--- a/libavfilter/vf_drawtext.c
+++ b/libavfilter/vf_drawtext.c
@@ -805,7 +805,7 @@ static int draw_text(AVFilterContext *ctx, AVFilterBufferRef *picref,
/* draw box */
if (dtext->draw_box)
drawbox(picref, dtext->x, dtext->y, box_w, box_h,
- dtext->box_line, dtext->pixel_step, dtext->boxcolor_rgba,
+ dtext->box_line, dtext->pixel_step, dtext->is_packed_rgb ? dtext->boxcolor_rgba : dtext->boxcolor,
dtext->hsub, dtext->vsub, dtext->is_packed_rgb, dtext->rgba_map);
if (dtext->shadowx || dtext->shadowy) {