Remove PIX_FMT_RGB32 mjpeg encoding, there is no such thing ...
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 5 Jan 2011 04:52:21 +0000 (04:52 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 5 Jan 2011 04:52:21 +0000 (04:52 +0000)
Originally committed as revision 26218 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/mpegvideo_enc.c

index 440588b..a09538b 100644 (file)
@@ -259,7 +259,7 @@ av_cold int MPV_encode_init(AVCodecContext *avctx)
         }
         break;
     case CODEC_ID_MJPEG:
-        if(avctx->pix_fmt != PIX_FMT_YUVJ420P && avctx->pix_fmt != PIX_FMT_YUVJ422P && avctx->pix_fmt != PIX_FMT_RGB32 &&
+        if(avctx->pix_fmt != PIX_FMT_YUVJ420P && avctx->pix_fmt != PIX_FMT_YUVJ422P &&
            ((avctx->pix_fmt != PIX_FMT_YUV420P && avctx->pix_fmt != PIX_FMT_YUV422P) || avctx->strict_std_compliance>FF_COMPLIANCE_UNOFFICIAL)){
             av_log(avctx, AV_LOG_ERROR, "colorspace not supported in jpeg\n");
             return -1;