[FFmpeg-cvslog] r20788 - trunk/libavcodec/mpegvideo_enc.c

michael subversion
Thu Dec 10 19:07:36 CET 2009


Author: michael
Date: Thu Dec 10 19:07:35 2009
New Revision: 20788

Log:
Fix RGB LJPEG encoding.

Modified:
   trunk/libavcodec/mpegvideo_enc.c

Modified: trunk/libavcodec/mpegvideo_enc.c
==============================================================================
--- trunk/libavcodec/mpegvideo_enc.c	Wed Dec  9 23:45:56 2009	(r20787)
+++ trunk/libavcodec/mpegvideo_enc.c	Thu Dec 10 19:07:35 2009	(r20788)
@@ -531,12 +531,18 @@ av_cold int MPV_encode_init(AVCodecConte
     case CODEC_ID_MJPEG:
         s->out_format = FMT_MJPEG;
         s->intra_only = 1; /* force intra only for jpeg */
+        if(avctx->codec->id == CODEC_ID_MJPEG){
         s->mjpeg_vsample[0] = 2;
         s->mjpeg_vsample[1] = 2>>chroma_v_shift;
         s->mjpeg_vsample[2] = 2>>chroma_v_shift;
         s->mjpeg_hsample[0] = 2;
         s->mjpeg_hsample[1] = 2>>chroma_h_shift;
         s->mjpeg_hsample[2] = 2>>chroma_h_shift;
+        }else{
+            s->mjpeg_vsample[0] = s->mjpeg_hsample[0] =
+            s->mjpeg_vsample[1] = s->mjpeg_hsample[1] =
+            s->mjpeg_vsample[2] = s->mjpeg_hsample[2] = 1;
+        }
         if (!(CONFIG_MJPEG_ENCODER || CONFIG_LJPEG_ENCODER)
             || ff_mjpeg_encode_init(s) < 0)
             return -1;



More information about the ffmpeg-cvslog mailing list