[FFmpeg-cvslog] vf_fade: remove unused function
Michael Niedermayer
git at videolan.org
Fri May 24 21:03:06 CEST 2013
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Fri May 24 20:50:15 2013 +0200| [e0f2e0fcf0acb6c78b0ecd69ad59c6c1c87b186c] | committer: Michael Niedermayer
vf_fade: remove unused function
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e0f2e0fcf0acb6c78b0ecd69ad59c6c1c87b186c
---
libavfilter/vf_fade.c | 19 -------------------
1 file changed, 19 deletions(-)
diff --git a/libavfilter/vf_fade.c b/libavfilter/vf_fade.c
index b899dc1..6c9b225 100644
--- a/libavfilter/vf_fade.c
+++ b/libavfilter/vf_fade.c
@@ -139,25 +139,6 @@ static int config_props(AVFilterLink *inlink)
return 0;
}
-static void fade_plane(int y, int h, int w,
- int fade_factor, int black_level, int black_level_scaled,
- uint8_t offset, uint8_t step, int bytes_per_plane,
- uint8_t *data, int line_size)
-{
- uint8_t *p;
- int i, j;
-
- /* luma, alpha or rgb plane */
- for (i = 0; i < h; i++) {
- p = data + offset + (y+i) * line_size;
- for (j = 0; j < w * bytes_per_plane; j++) {
- /* s->factor is using 16 lower-order bits for decimal places. */
- *p = ((*p - black_level) * fade_factor + black_level_scaled) >> 16;
- p+=step;
- }
- }
-}
-
static int filter_slice_luma(AVFilterContext *ctx, void *arg, int jobnr,
int nb_jobs)
{
More information about the ffmpeg-cvslog
mailing list