annotate libvo/osd.h @ 25317:7f3cb5408f28

Fixed VIDIX color bug that was introduced when Radeon VIDIX driver was synchronized with vidix.sf.net. The red color was saturating. Corrected value fixes the issue and restore the color to the level it used to have before synchronization. Meaning of the value remains unknow but was retrieved from register's value of a Radeon 9000 card, so it may need further testing. Patch by Guillaume Lecerf (foxcore at gmail dot com)
author ben
date Mon, 10 Dec 2007 19:27:46 +0000
parents 3f0d00abc073
children 3baf6a2283da
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
615
pontscho
parents:
diff changeset
1
23689
3f0d00abc073 Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents: 17566
diff changeset
2 #ifndef MPLAYER_OSD_H
3f0d00abc073 Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents: 17566
diff changeset
3 #define MPLAYER_OSD_H
615
pontscho
parents:
diff changeset
4
pontscho
parents:
diff changeset
5 // Generic alpha renderers for all YUV modes and RGB depths.
pontscho
parents:
diff changeset
6 // These are "reference implementations", should be optimized later (MMX, etc)
pontscho
parents:
diff changeset
7
17566
f580a7755ac5 Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents: 12516
diff changeset
8 extern void vo_draw_alpha_init(void); // build tables
947
76fd9463b9d3 FAST_OSD option to disable font outline antialiasing
arpi_esp
parents: 615
diff changeset
9
615
pontscho
parents:
diff changeset
10 extern void vo_draw_alpha_yv12(int w,int h, unsigned char* src, unsigned char *srca, int srcstride, unsigned char* dstbase,int dststride);
pontscho
parents:
diff changeset
11 extern void vo_draw_alpha_yuy2(int w,int h, unsigned char* src, unsigned char *srca, int srcstride, unsigned char* dstbase,int dststride);
12516
6f7b5123ac56 draw alpha for uyvy
nplourde
parents: 1088
diff changeset
12 extern void vo_draw_alpha_uyvy(int w,int h, unsigned char* src, unsigned char *srca, int srcstride, unsigned char* dstbase,int dststride);
615
pontscho
parents:
diff changeset
13 extern void vo_draw_alpha_rgb24(int w,int h, unsigned char* src, unsigned char *srca, int srcstride, unsigned char* dstbase,int dststride);
pontscho
parents:
diff changeset
14 extern void vo_draw_alpha_rgb32(int w,int h, unsigned char* src, unsigned char *srca, int srcstride, unsigned char* dstbase,int dststride);
pontscho
parents:
diff changeset
15 extern void vo_draw_alpha_rgb15(int w,int h, unsigned char* src, unsigned char *srca, int srcstride, unsigned char* dstbase,int dststride);
pontscho
parents:
diff changeset
16 extern void vo_draw_alpha_rgb16(int w,int h, unsigned char* src, unsigned char *srca, int srcstride, unsigned char* dstbase,int dststride);
pontscho
parents:
diff changeset
17
1088
f558888661ca newline at the end of the file
szabii
parents: 947
diff changeset
18 #endif
f558888661ca newline at the end of the file
szabii
parents: 947
diff changeset
19