diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-08-17 22:02:30 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-08-17 22:10:45 +0200 |
commit | a810126fd1b922154359a84b49ae2b7b9568efae (patch) | |
tree | 64a9b1ad8fb20581923e1e556a3a2321998f310c | |
parent | 5ee5f4b13cc4a512d5a6730bc1b4d913c9a9dc11 (diff) | |
download | ffmpeg-a810126fd1b922154359a84b49ae2b7b9568efae.tar.gz |
lavc/rscc: Fix colourspace for codec_tag RSCC and 32bpp.
-rw-r--r-- | libavcodec/rscc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rscc.c b/libavcodec/rscc.c index fe0df2eec1..d60d9466f6 100644 --- a/libavcodec/rscc.c +++ b/libavcodec/rscc.c @@ -98,7 +98,7 @@ static av_cold int rscc_init(AVCodecContext *avctx) avctx->pix_fmt = AV_PIX_FMT_BGR24; break; case 32: - avctx->pix_fmt = AV_PIX_FMT_BGRA; + avctx->pix_fmt = AV_PIX_FMT_BGR0; break; default: av_log(avctx, AV_LOG_ERROR, "Invalid bits per pixel value (%d)\n", |