[FFmpeg-cvslog] Simplify chroma blend 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:23:31 2011 +0100| [edbaedf7a0c4cf2c41daf8259c617664b1c8b4f5] | committer: Michael Niedermayer
Simplify chroma blend in the drawtext filter
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=edbaedf7a0c4cf2c41daf8259c617664b1c8b4f5
---
libavfilter/vf_drawtext.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavfilter/vf_drawtext.c b/libavfilter/vf_drawtext.c
index 9fe6def..d470c89 100644
--- a/libavfilter/vf_drawtext.c
+++ b/libavfilter/vf_drawtext.c
@@ -376,8 +376,8 @@ static int config_input(AVFilterLink *inlink)
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] = 16 + (alpha * (yuva_color[1]-16) + (224 - alpha) * (picref->data[1][chroma_pos1]-16)) / 224; \
- picref->data[2][chroma_pos2] = 16 + (alpha * (yuva_color[2]-16) + (224 - alpha) * (picref->data[2][chroma_pos2]-16)) / 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; \
}
static inline int draw_glyph_yuv(AVFilterBufferRef *picref, FT_Bitmap *bitmap, unsigned int x,
More information about the ffmpeg-cvslog
mailing list