changeset 30973:2490e6b689e6

Enable OSD also for BGR32, the code is the same as for RGB32.
author reimar
date Mon, 05 Apr 2010 07:22:21 +0000
parents 886527159cae
children bd964ca1f6fa
files libvo/vo_corevideo.m
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/vo_corevideo.m	Mon Apr 05 07:15:22 2010 +0000
+++ b/libvo/vo_corevideo.m	Mon Apr 05 07:22:21 2010 +0000
@@ -104,6 +104,7 @@
 {
 	switch (image_format)
 	{
+		case IMGFMT_BGR32:
 		case IMGFMT_RGB32:
 			vo_draw_alpha_rgb32(w,h,src,srca,stride,image_data+4*(y0*image_width+x0),4*image_width);
 			break;