# HG changeset patch # User diego # Date 1192268510 0 # Node ID caae775a1619ebaaa5c8e99ff870aa59c58c919e # Parent 1c09a39f755aa5f5b9baae4791b995de22439cd0 support Y800 in raw video patch by Attila tvs, oattila chello hu diff -r 1c09a39f755a -r caae775a1619 libmpdemux/demux_rawvideo.c --- a/libmpdemux/demux_rawvideo.c Sat Oct 13 09:40:32 2007 +0000 +++ b/libmpdemux/demux_rawvideo.c Sat Oct 13 09:41:50 2007 +0000 @@ -79,6 +79,7 @@ case IMGFMT_YV12: imgsize=width*height+2*(width>>1)*(height>>1);break; case IMGFMT_YUY2: imgsize=width*height*2;break; case IMGFMT_UYVY: imgsize=width*height*2;break; + case IMGFMT_Y800: case IMGFMT_Y8: imgsize=width*height;break; default: if (IMGFMT_IS_RGB(format))