CVS: main/libvo vo_sdl.c,1.14,1.15
Update of /cvsroot/mplayer/main/libvo In directory usw-pr-cvs1:/tmp/cvs-serv21792 Modified Files: vo_sdl.c Log Message: some additional changes to support different image formats Index: vo_sdl.c =================================================================== RCS file: /cvsroot/mplayer/main/libvo/vo_sdl.c,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** vo_sdl.c 2001/04/14 17:50:55 1.14 --- vo_sdl.c 2001/04/15 15:45:26 1.15 *************** *** 378,399 **** unsigned int sdl_format; ! switch(format){ ! case IMGFMT_YV12: ! sdl_format=SDL_YV12_OVERLAY; ! printf("SDL: Using YV12 image format\n"); ! break; ! case IMGFMT_YUY2: ! sdl_format=SDL_YUY2_OVERLAY; ! printf("SDL: Using YUY2 image format\n"); ! break; ! case IMGFMT_UYVY: ! sdl_format=SDL_UYVY_OVERLAY; ! printf("SDL: Using UYVY image format\n"); ! break; ! default: ! printf("SDL: Unsupported image format (0x%X)\n",format); ! return -1; ! } sdl_open (NULL, NULL); --- 378,402 ---- unsigned int sdl_format; ! sdl_format = format; switch(format){ ! case IMGFMT_YV12: ! printf("\nSDL: Using 0x%X (YV12) image format\n", format); break; ! case IMGFMT_IYUV: ! printf("\nSDL: Using 0x%X (IYUV) image format\n", format); break; ! case IMGFMT_YUY2: ! printf("\nSDL: Using 0x%X (YUY2) image format\n", format); break; ! case IMGFMT_UYVY: ! printf("\nSDL: Using 0x%X (UYVY) image format\n", format); break; ! case IMGFMT_YVYU: ! printf("\nSDL: Using 0x%X (YVYU) image format\n", format); break; ! case IMGFMT_I420: ! printf("\nSDL: Using 0x%X (I420) image format\n", format); ! printf("SDL: Mapping I420 to IYUV (untested please report if it works)\n"); ! sdl_format = SDL_IYUV_OVERLAY; ! break; ! default: ! printf("\nSDL: Unsupported image format (0x%X)\n",format); ! return -1; ! } sdl_open (NULL, NULL); _______________________________________________ Mplayer-cvslog mailing list Mplayer-cvslog@lists.sourceforge.net http://lists.sourceforge.net/lists/listinfo/mplayer-cvslog
participants (1)
-
Felix Buenemann