cosmetics: consistent function declarations.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27982 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-11-23 11:59:37 +00:00
parent 9e2505a3f5
commit 0ad147ed5c
1 changed files with 7 additions and 4 deletions

View File

@ -121,7 +121,8 @@ static void scale_image(struct vf_priv_s* priv, mp_image_t *mpi)
sws_scale_ordered(priv->ctx, mpi->planes, mpi->stride, 0, priv->dh, dst, dst_stride); sws_scale_ordered(priv->ctx, mpi->planes, mpi->stride, 0, priv->dh, dst, dst_stride);
} }
static void start_slice(struct vf_instance_s* vf, mp_image_t *mpi){ static void start_slice(struct vf_instance_s* vf, mp_image_t *mpi)
{
vf->dmpi=vf_get_image(vf->next,mpi->imgfmt, vf->dmpi=vf_get_image(vf->next,mpi->imgfmt,
mpi->type, mpi->flags, mpi->width, mpi->height); mpi->type, mpi->flags, mpi->width, mpi->height);
if (vf->priv->shot) { if (vf->priv->shot) {
@ -132,8 +133,9 @@ static void start_slice(struct vf_instance_s* vf, mp_image_t *mpi){
} }
static void draw_slice(struct vf_instance_s* vf, static void draw_slice(struct vf_instance_s* vf, unsigned char** src,
unsigned char** src, int* stride, int w,int h, int x, int y){ int* stride, int w,int h, int x, int y)
{
if (vf->priv->store_slices) { if (vf->priv->store_slices) {
uint8_t *dst[3]; uint8_t *dst[3];
int dst_stride[3]; int dst_stride[3];
@ -146,7 +148,8 @@ static void draw_slice(struct vf_instance_s* vf,
vf_next_draw_slice(vf,src,stride,w,h,x,y); vf_next_draw_slice(vf,src,stride,w,h,x,y);
} }
static void get_image(struct vf_instance_s* vf, mp_image_t *mpi){ static void get_image(struct vf_instance_s* vf, mp_image_t *mpi)
{
// FIXME: should vf.c really call get_image when using slices?? // FIXME: should vf.c really call get_image when using slices??
if (mpi->flags & MP_IMGFLAG_DRAW_CALLBACK) if (mpi->flags & MP_IMGFLAG_DRAW_CALLBACK)
return; return;