ffmpeg | branch: release/2.2 | Christophe Gisquet <christophe.gisq...@gmail.com> | Mon Aug 18 14:15:21 2014 +0000| [b3f48a5044fd04539337e91d28022207c9d3b9e8] | committer: Luca Barbato
proresenc: Remove unneeded parameters from encode_alpha_plane() Signed-off-by: Diego Biurrun <di...@biurrun.de> Signed-off-by: Luca Barbato <lu_z...@gentoo.org> (cherry picked from commit b16699f2da9c1d41eff852ec3a0c81f74fd44421) Signed-off-by: Luca Barbato <lu_z...@gentoo.org> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b3f48a5044fd04539337e91d28022207c9d3b9e8 --- libavcodec/proresenc.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libavcodec/proresenc.c b/libavcodec/proresenc.c index 7e9ce54..c03b3b5 100644 --- a/libavcodec/proresenc.c +++ b/libavcodec/proresenc.c @@ -467,7 +467,6 @@ static void put_alpha_run(PutBitContext *pb, int run) // todo alpha quantisation for high quants static int encode_alpha_plane(ProresContext *ctx, PutBitContext *pb, - const uint16_t *src, int linesize, int mbs_per_slice, uint16_t *blocks, int quant) { @@ -562,9 +561,8 @@ static int encode_slice(AVCodecContext *avctx, const AVFrame *pic, get_alpha_data(ctx, src, linesize, xp, yp, pwidth, avctx->height / ctx->pictures_per_frame, ctx->blocks[0], mbs_per_slice, ctx->alpha_bits); - sizes[i] = encode_alpha_plane(ctx, pb, src, linesize, - mbs_per_slice, ctx->blocks[0], - quant); + sizes[i] = encode_alpha_plane(ctx, pb, mbs_per_slice, + ctx->blocks[0], quant); } total_size += sizes[i]; } _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog