[FFmpeg-cvslog] Set BFI palette opaque.
Carl Eugen Hoyos
git at videolan.org
Sat Nov 12 20:57:00 CET 2011
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Sat Nov 12 19:36:23 2011 +0100| [3fd9f089718a5c94bdde7d74f697e4bd7c2894e7] | committer: Carl Eugen Hoyos
Set BFI palette opaque.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3fd9f089718a5c94bdde7d74f697e4bd7c2894e7
---
libavcodec/bfi.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavcodec/bfi.c b/libavcodec/bfi.c
index 8f4770e..25863cb 100644
--- a/libavcodec/bfi.c
+++ b/libavcodec/bfi.c
@@ -80,7 +80,7 @@ static int bfi_decode_frame(AVCodecContext * avctx, void *data,
pal = (uint32_t *) bfi->frame.data[1];
for (i = 0; i < avctx->extradata_size / 3; i++) {
int shift = 16;
- *pal = 0;
+ *pal = 0xFF << 24;
for (j = 0; j < 3; j++, shift -= 8)
*pal +=
((avctx->extradata[i * 3 + j] << 2) |
More information about the ffmpeg-cvslog
mailing list