annotate libvo/osd.h @ 12007:b41cc72bb8ad

We now allow for the possibility of the RTCP audio/video synchronization being incorrect. (I encounted a stream for which this was the case.) Now, if audio and video are out-of-sync by >60 seconds, we assume that the RTCP sync is incorrect, and we don't discard any packets.
author rsf
date Tue, 02 Mar 2004 08:52:59 +0000
parents f558888661ca
children 6f7b5123ac56
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
615
pontscho
parents:
diff changeset
1
pontscho
parents:
diff changeset
2 #ifndef __MPLAYER_OSD_H
pontscho
parents:
diff changeset
3 #define __MPLAYER_OSD_H
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
947
76fd9463b9d3 FAST_OSD option to disable font outline antialiasing
arpi_esp
parents: 615
diff changeset
8 extern void vo_draw_alpha_init(); // build tables
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);
pontscho
parents:
diff changeset
12 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
13 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
14 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
15 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
16
1088
f558888661ca newline at the end of the file
szabii
parents: 947
diff changeset
17 #endif
f558888661ca newline at the end of the file
szabii
parents: 947
diff changeset
18