Mercurial > mplayer.hg
changeset 17561:7b7b7552fcbb
Add support for grayscale [m]jpeg
author | rtognimp |
---|---|
date | Wed, 08 Feb 2006 23:22:29 +0000 |
parents | 1a54f39404b9 |
children | 492f442c11af |
files | etc/codecs.conf libmpcodecs/vd_ffmpeg.c |
diffstat | 2 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/etc/codecs.conf Wed Feb 08 13:14:19 2006 +0000 +++ b/etc/codecs.conf Wed Feb 08 23:22:29 2006 +0000 @@ -799,6 +799,7 @@ out YUY2 ; queried (conversion from yuv422p) out YV12,I420,IYUV out BGR32 ; lossless JPEG + out Y800 videocodec ffmjpegb info "FFmpeg MJPEG-B decoder"
--- a/libmpcodecs/vd_ffmpeg.c Wed Feb 08 13:14:19 2006 +0000 +++ b/libmpcodecs/vd_ffmpeg.c Wed Feb 08 23:22:29 2006 +0000 @@ -560,6 +560,7 @@ case PIX_FMT_BGR24 : ctx->best_csp=IMGFMT_BGR24;break; //8bps case PIX_FMT_RGB555: ctx->best_csp=IMGFMT_BGR15;break; //rpza,cram case PIX_FMT_RGB565: ctx->best_csp=IMGFMT_BGR16;break; //4xm + case PIX_FMT_GRAY8: ctx->best_csp=IMGFMT_Y800;break; // gray jpeg case PIX_FMT_PAL8: ctx->best_csp=IMGFMT_BGR8;break; //8bps,mrle,cram #ifdef HAVE_XVMC case PIX_FMT_XVMC_MPEG2_MC:ctx->best_csp=IMGFMT_XVMC_MOCO_MPEG2;break;