]> git.sesse.net Git - ffmpeg/commitdiff
prores: Set the bits_per_coded_sample for alpha pix_fmt
authorLuca Barbato <lu_zero@gentoo.org>
Wed, 22 Apr 2015 18:50:10 +0000 (20:50 +0200)
committerLuca Barbato <lu_zero@gentoo.org>
Wed, 22 Apr 2015 18:50:10 +0000 (20:50 +0200)
Improve the compatibility with other software.

libavcodec/proresenc.c

index f61aa60a20a0483088525798276f0375308ec76b..3a5524aa4c6ac6b9fd5aaa7fa8d301665cfea0ba 100644 (file)
@@ -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;
     }