Commit b16699f2 authored by Christophe Gisquet's avatar Christophe Gisquet Committed by Luca Barbato

proresenc: Remove unneeded parameters from encode_alpha_plane()

Signed-off-by: 's avatarDiego Biurrun <diego@biurrun.de>
Signed-off-by: 's avatarLuca Barbato <lu_zero@gentoo.org>
parent 12640e4c
...@@ -468,7 +468,6 @@ static void put_alpha_run(PutBitContext *pb, int run) ...@@ -468,7 +468,6 @@ static void put_alpha_run(PutBitContext *pb, int run)
// todo alpha quantisation for high quants // todo alpha quantisation for high quants
static int encode_alpha_plane(ProresContext *ctx, PutBitContext *pb, static int encode_alpha_plane(ProresContext *ctx, PutBitContext *pb,
const uint16_t *src, int linesize,
int mbs_per_slice, uint16_t *blocks, int mbs_per_slice, uint16_t *blocks,
int quant) int quant)
{ {
...@@ -563,9 +562,8 @@ static int encode_slice(AVCodecContext *avctx, const AVFrame *pic, ...@@ -563,9 +562,8 @@ static int encode_slice(AVCodecContext *avctx, const AVFrame *pic,
get_alpha_data(ctx, src, linesize, xp, yp, get_alpha_data(ctx, src, linesize, xp, yp,
pwidth, avctx->height / ctx->pictures_per_frame, pwidth, avctx->height / ctx->pictures_per_frame,
ctx->blocks[0], mbs_per_slice, ctx->alpha_bits); ctx->blocks[0], mbs_per_slice, ctx->alpha_bits);
sizes[i] = encode_alpha_plane(ctx, pb, src, linesize, sizes[i] = encode_alpha_plane(ctx, pb, mbs_per_slice,
mbs_per_slice, ctx->blocks[0], ctx->blocks[0], quant);
quant);
} }
total_size += sizes[i]; total_size += sizes[i];
} }
......
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