[FFmpeg-cvslog] fix chroma alpha in the drawtext filter
Michael Niedermayer
git
Tue Feb 22 01:51:47 CET 2011
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Tue Feb 22 00:28:54 2011 +0100| [476aaec63729a306d1759f14c74847ca8f0b2021] | committer: Michael Niedermayer
fix chroma alpha in the drawtext filter
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=476aaec63729a306d1759f14c74847ca8f0b2021
---
libavfilter/vf_drawtext.c | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/libavfilter/vf_drawtext.c b/libavfilter/vf_drawtext.c
index d470c89..ec83ac0 100644
--- a/libavfilter/vf_drawtext.c
+++ b/libavfilter/vf_drawtext.c
@@ -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,
More information about the ffmpeg-cvslog
mailing list