mirror of https://git.ffmpeg.org/ffmpeg.git
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 1858a5c25e
)
This commit is contained in:
parent
7e97d98033
commit
103cb461b0
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue