Browse code

Fix colours for QT JPEG2000, fixes issue 1540.

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

Carl Eugen Hoyos authored on 2009/12/29 21:00:28
Showing 1 changed files
... ...
@@ -131,7 +131,7 @@ static int libopenjpeg_decode_frame(AVCodecContext *avctx,
131 131
                  }
132 132
                  break;
133 133
         case 4:  has_alpha = 1;
134
-                 avctx->pix_fmt = PIX_FMT_RGB32;
134
+                 avctx->pix_fmt = PIX_FMT_RGBA;
135 135
                  break;
136 136
         default: av_log(avctx, AV_LOG_ERROR, "%d components unsupported.\n", image->numcomps);
137 137
                  goto done;