Commit 476aaec6 authored by Michael Niedermayer's avatar Michael Niedermayer

fix chroma alpha in the drawtext filter

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent edbaedf7
......@@ -375,9 +375,8 @@ static int config_input(AVFilterLink *inlink)
chroma_pos2 = ((x) >> (hsub)) + ((y) >> (vsub)) * picref->linesize[2]; \
alpha = (yuva_color[3] * (val)) / 255; \
picref->data[0][luma_pos] = (alpha * yuva_color[0] + (255 - alpha) * picref->data[0][luma_pos]) >> 8; \
alpha = (yuva_color[3] * (val)) / 224; \
picref->data[1][chroma_pos1] = (alpha * yuva_color[1] + (224 - alpha) * picref->data[1][chroma_pos1]) / 224; \
picref->data[2][chroma_pos2] = (alpha * yuva_color[2] + (224 - alpha) * picref->data[2][chroma_pos2]) / 224; \
picref->data[1][chroma_pos1] = (alpha * yuva_color[1] + (255 - alpha) * picref->data[1][chroma_pos1]) >> 8; \
picref->data[2][chroma_pos2] = (alpha * yuva_color[2] + (255 - alpha) * picref->data[2][chroma_pos2]) >> 8; \
}
static inline int draw_glyph_yuv(AVFilterBufferRef *picref, FT_Bitmap *bitmap, unsigned int x,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment