[FFmpeg-cvslog] Make 32bit zmbv colour-space opaque.
    Carl Eugen Hoyos 
    git at videolan.org
       
    Wed Mar  6 05:43:30 CET 2013
    
    
  
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Wed Mar  6 00:38:12 2013 +0100| [b45e85ab7e5e3fc3f1b408fe2fd86c53ba649aa0] | committer: Carl Eugen Hoyos
Make 32bit zmbv colour-space opaque.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b45e85ab7e5e3fc3f1b408fe2fd86c53ba649aa0
---
 libavcodec/zmbv.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/zmbv.c b/libavcodec/zmbv.c
index d1530e7..47b3468 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:
    
    
More information about the ffmpeg-cvslog
mailing list