diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-05-20 14:59:38 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-05-20 14:59:38 +0200 |
commit | eb0c08bc6938d1e873097a9c02772787d85b54b8 (patch) | |
tree | ab2b34b5b52a27e43cb4532827cddc0a05b70118 /libavcodec | |
parent | 0d41f1ffbcaedcd9cbffd0625277b0de2360e9a5 (diff) | |
download | ffmpeg-eb0c08bc6938d1e873097a9c02772787d85b54b8.tar.gz |
lavc/vmnc: Fix 32bit colour-space, there is no transparency.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vmnc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vmnc.c b/libavcodec/vmnc.c index 46bd52ee26..aef3df37a9 100644 --- a/libavcodec/vmnc.c +++ b/libavcodec/vmnc.c @@ -538,7 +538,7 @@ static av_cold int decode_init(AVCodecContext *avctx) avctx->pix_fmt = AV_PIX_FMT_RGB555; break; case 32: - avctx->pix_fmt = AV_PIX_FMT_RGB32; + avctx->pix_fmt = AV_PIX_FMT_0RGB32; break; default: av_log(avctx, AV_LOG_ERROR, "Unsupported bitdepth %i\n", c->bpp); |