Commit 46f9dcc3 authored by Reimar Döffinger's avatar Reimar Döffinger

Fix 16 bit cscd samples, 16 bit raw means RGB555 on Windows, and the original

cscd codec is for windows.

Originally committed as revision 7266 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 2c04fc1f
...@@ -220,7 +220,7 @@ static int decode_init(AVCodecContext *avctx) { ...@@ -220,7 +220,7 @@ static int decode_init(AVCodecContext *avctx) {
} }
avctx->has_b_frames = 0; avctx->has_b_frames = 0;
switch (avctx->bits_per_sample) { switch (avctx->bits_per_sample) {
case 16: avctx->pix_fmt = PIX_FMT_RGB565; break; case 16: avctx->pix_fmt = PIX_FMT_RGB555; break;
case 24: avctx->pix_fmt = PIX_FMT_BGR24; break; case 24: avctx->pix_fmt = PIX_FMT_BGR24; break;
case 32: avctx->pix_fmt = PIX_FMT_RGBA32; break; case 32: avctx->pix_fmt = PIX_FMT_RGBA32; break;
default: default:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment