OSDN Git Service

Lossless jpeg expects and uses BGRA not RGB32 (this probably caused a problem on
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 10 Dec 2009 18:14:26 +0000 (18:14 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Thu, 10 Dec 2009 18:14:26 +0000 (18:14 +0000)
big endian)

Originally committed as revision 20789 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/mjpegdec.c
libavcodec/mjpegenc.c

index 5b213e4..d23c67c 100644 (file)
@@ -301,7 +301,7 @@ int ff_mjpeg_decode_sof(MJpegDecodeContext *s)
     switch(pix_fmt_id){
     case 0x11111100:
         if(s->rgb){
-            s->avctx->pix_fmt = PIX_FMT_RGB32;
+            s->avctx->pix_fmt = PIX_FMT_BGRA;
         }else
             s->avctx->pix_fmt = s->cs_itu601 ? PIX_FMT_YUV444P : PIX_FMT_YUVJ444P;
         assert(s->nb_components==3);
index d7a85ee..129a257 100644 (file)
@@ -211,7 +211,7 @@ void ff_mjpeg_encode_picture_header(MpegEncContext *s)
     }
 
     put_bits(&s->pb, 16, 17);
-    if(lossless && s->avctx->pix_fmt == PIX_FMT_RGB32)
+    if(lossless && s->avctx->pix_fmt == PIX_FMT_BGRA)
         put_bits(&s->pb, 8, 9); /* 9 bits/component RCT */
     else
         put_bits(&s->pb, 8, 8); /* 8 bits/component */