cleanup: vo_direct3d: Mark a function static

This fixes the warning:
libvo/vo_direct3d.c:984:6: warning: no previous prototype for 'vo_draw_alpha_l8a8'

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33499 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2011-05-24 19:47:07 +00:00 committed by Uoti Urpala
parent f52b41600d
commit 94d3e6a710
1 changed files with 3 additions and 2 deletions

View File

@ -979,8 +979,9 @@ static int draw_frame(uint8_t *src[])
* These values are then inverted again with
the texture filter D3DBLEND_INVSRCALPHA
*/
void vo_draw_alpha_l8a8(int w, int h, unsigned char* src, unsigned char *srca,
int srcstride, unsigned char* dstbase, int dststride)
static void vo_draw_alpha_l8a8(int w, int h, unsigned char* src,
unsigned char *srca, int srcstride,
unsigned char* dstbase, int dststride)
{
int y;
for (y = 0; y < h; y++) {