Browse Source

proresenc_kostya: remove unneeded parameters

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.4
Christophe Gisquet Michael Niedermayer 11 years ago
parent
commit
bf10f09bcc
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      libavcodec/proresenc_kostya.c

+ 1
- 2
libavcodec/proresenc_kostya.c View File

@@ -471,7 +471,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)
{ {
@@ -566,7 +565,7 @@ 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, ctx->blocks[0], mbs_per_slice, ctx->blocks[0],
quant); quant);
} }


Loading…
Cancel
Save