Remove pointless and gcc-specific __attribute__ ((unused)).

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27656 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-09-23 20:38:30 +00:00
parent fd15ca4163
commit 02eb69fc5c
1 changed files with 3 additions and 3 deletions

View File

@ -90,7 +90,7 @@ static vidix_capability_t ivtv_cap =
};
static void de_macro_y(unsigned char *src, unsigned char *dst,
unsigned int w, unsigned int h, int src_x, int src_y, int height __attribute__ ((unused)), int width)
unsigned int w, unsigned int h, int src_x, int src_y, int height, int width)
{
unsigned int x, y, i;
unsigned char *dst_2;
@ -221,7 +221,7 @@ static void de_macro_uv(unsigned char *srcu, unsigned char *srcv,
}
}
int ivtv_probe(int verbose,int force __attribute__ ((unused)))
int ivtv_probe(int verbose)
{
unsigned char fb_number = 0;
char *device_name = NULL;
@ -356,7 +356,7 @@ yuv_found:
return 0;
}
int ivtv_init(const char *args __attribute__ ((unused)))
int ivtv_init(void)
{
if(ivtv_verbose)
printf(IVTV_MSG"init\n");