summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authoratmosfear <atmosfear@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-15 21:08:11 +0000
committeratmosfear <atmosfear@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-15 21:08:11 +0000
commit509e53aac75e5ba1ab34ca72e0cee7df7fded6a7 (patch)
treecad0ad0f077470d35bc48ec2011f36ed597c4d61 /libvo
parent20ea207eb5a8cbd126b102e3c34ad0706225ebad (diff)
downloadmpv-509e53aac75e5ba1ab34ca72e0cee7df7fded6a7.tar.bz2
mpv-509e53aac75e5ba1ab34ca72e0cee7df7fded6a7.tar.xz
fixes osd/subtitle for UYVY image format and steps back to 1.15 changes
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@452 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_sdl.c41
1 files changed, 23 insertions, 18 deletions
diff --git a/libvo/vo_sdl.c b/libvo/vo_sdl.c
index 1b757a5c3b..01db027243 100644
--- a/libvo/vo_sdl.c
+++ b/libvo/vo_sdl.c
@@ -156,10 +156,12 @@ static void draw_alpha(int x0,int y0, int w,int h, unsigned char* src, unsigned
vo_draw_alpha_yv12(w,h,src,srca,stride,((uint8_t *) *(priv->overlay->pixels))+priv->width*y0+x0,priv->width);
break;
case IMGFMT_YUY2:
- case IMGFMT_UYVY:
case IMGFMT_YVYU:
vo_draw_alpha_yuy2(w,h,src,srca,stride,((uint8_t *) *(priv->overlay->pixels))+2*(priv->width*y0+x0),2*priv->width);
break;
+ case IMGFMT_UYVY:
+ vo_draw_alpha_yuy2(w,h,src,srca,stride,((uint8_t *) *(priv->overlay->pixels))+2*(priv->width*y0+x0)+1,2*priv->width);
+ break;
}
}
@@ -377,24 +379,27 @@ init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint3
struct sdl_priv_s *priv = &sdl_priv;
unsigned int sdl_format;
-
+ sdl_format = 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;
- }
+ 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);