Commit 0a51c7d4 authored by Luca Barbato's avatar Luca Barbato

prores: Set the bits_per_coded_sample for alpha pix_fmt

Improve the compatibility with other software.
parent 28eddef6
......@@ -1151,6 +1151,7 @@ static av_cold int encode_init(AVCodecContext *avctx)
av_log(avctx, AV_LOG_ERROR, "alpha bits should be 0, 8 or 16\n");
return AVERROR(EINVAL);
}
avctx->bits_per_coded_sample = 32;
} else {
ctx->alpha_bits = 0;
}
......
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