Fix "inline keyword not at beginning of declaration" warning.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23237 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-05-05 12:45:32 +00:00
parent b2f2ae5a60
commit 851b1e6351
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ static void get_image(struct vf_instance_s* vf, mp_image_t *mpi){
mpi->flags|=MP_IMGFLAG_DIRECT;
}
static double inline getpix(struct vf_instance_s* vf, double x, double y, int plane){
static inline double getpix(struct vf_instance_s* vf, double x, double y, int plane){
int xi, yi;
mp_image_t *mpi= vf->priv->mpi;
int stride= mpi->stride[plane];