[FFmpeg-cvslog] lavc/utvideoenc: Set bits_per_coded_sample for rgba.
Carl Eugen Hoyos
git at videolan.org
Tue Oct 25 14:46:36 EEST 2016
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Tue Oct 25 13:44:08 2016 +0200| [134233972e7961d9a41c67d27da505e459d5edfa] | committer: Carl Eugen Hoyos
lavc/utvideoenc: Set bits_per_coded_sample for rgba.
Allows to write correct value for biBitCount into BITMAPINFOHEADER.
Before, ff_put_bmp_header() always wrote "24" as biBitCount
for utvideo because bits_per_coded_sample was never set by the
encoder.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=134233972e7961d9a41c67d27da505e459d5edfa
---
libavcodec/utvideoenc.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libavcodec/utvideoenc.c b/libavcodec/utvideoenc.c
index 8ffc263..6082943 100644
--- a/libavcodec/utvideoenc.c
+++ b/libavcodec/utvideoenc.c
@@ -77,6 +77,7 @@ static av_cold int utvideo_encode_init(AVCodecContext *avctx)
c->planes = 4;
avctx->codec_tag = MKTAG('U', 'L', 'R', 'A');
original_format = UTVIDEO_RGBA;
+ avctx->bits_per_coded_sample = 32;
break;
case AV_PIX_FMT_YUV420P:
if (avctx->width & 1 || avctx->height & 1) {
More information about the ffmpeg-cvslog
mailing list