diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-03-06 00:38:12 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-03-06 00:38:12 +0100 |
commit | b45e85ab7e5e3fc3f1b408fe2fd86c53ba649aa0 (patch) | |
tree | c1bf5dfabc5de4157916254d379f19f5a6de92e8 | |
parent | 96d2e4d61a51e4d0c7cc9e78b95d49c833b0459f (diff) | |
download | ffmpeg-b45e85ab7e5e3fc3f1b408fe2fd86c53ba649aa0.tar.gz |
Make 32bit zmbv colour-space opaque.
-rw-r--r-- | libavcodec/zmbv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/zmbv.c b/libavcodec/zmbv.c index d1530e70e0..47b3468fe7 100644 --- a/libavcodec/zmbv.c +++ b/libavcodec/zmbv.c @@ -479,7 +479,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPac c->bpp = 32; decode_intra = zmbv_decode_intra; c->decode_xor = zmbv_decode_xor_32; - avctx->pix_fmt = AV_PIX_FMT_BGRA; + avctx->pix_fmt = AV_PIX_FMT_BGR0; c->stride = c->width * 4; break; default: |