2002-04-11 03:17:14 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2005-11-18 14:39:25 +00:00
|
|
|
#include "config.h"
|
|
|
|
#include "mp_msg.h"
|
2002-04-11 03:17:14 +00:00
|
|
|
|
2002-04-13 19:14:34 +00:00
|
|
|
#include "mp_image.h"
|
2002-04-11 03:17:14 +00:00
|
|
|
#include "vf.h"
|
|
|
|
|
2005-11-18 14:39:25 +00:00
|
|
|
#include "libvo/video_out.h"
|
2002-04-11 03:17:14 +00:00
|
|
|
|
|
|
|
//===========================================================================//
|
|
|
|
|
2002-05-20 02:27:10 +00:00
|
|
|
static int config(struct vf_instance_s* vf,
|
|
|
|
int width, int height, int d_width, int d_height,
|
|
|
|
unsigned int flags, unsigned int outfmt){
|
2005-04-18 15:52:38 +00:00
|
|
|
flags&=~VOFLAG_FLIPPING; // remove the FLIP flag
|
2002-05-20 02:27:10 +00:00
|
|
|
return vf_next_config(vf,width,height,d_width,d_height,flags,outfmt);
|
|
|
|
}
|
|
|
|
|
2002-04-11 03:17:14 +00:00
|
|
|
static void get_image(struct vf_instance_s* vf, mp_image_t *mpi){
|
|
|
|
if(mpi->flags&MP_IMGFLAG_ACCEPT_STRIDE){
|
|
|
|
// try full DR !
|
2003-05-20 18:36:55 +00:00
|
|
|
vf->dmpi=vf_get_image(vf->next,mpi->imgfmt,
|
2002-04-11 03:17:14 +00:00
|
|
|
mpi->type, mpi->flags, mpi->width, mpi->height);
|
|
|
|
// set up mpi as a upside-down image of dmpi:
|
2003-05-20 18:36:55 +00:00
|
|
|
mpi->planes[0]=vf->dmpi->planes[0]+
|
|
|
|
vf->dmpi->stride[0]*(vf->dmpi->height-1);
|
|
|
|
mpi->stride[0]=-vf->dmpi->stride[0];
|
2002-04-11 03:17:14 +00:00
|
|
|
if(mpi->flags&MP_IMGFLAG_PLANAR){
|
2003-05-20 18:36:55 +00:00
|
|
|
mpi->planes[1]=vf->dmpi->planes[1]+
|
|
|
|
vf->dmpi->stride[1]*((vf->dmpi->height>>mpi->chroma_y_shift)-1);
|
|
|
|
mpi->stride[1]=-vf->dmpi->stride[1];
|
|
|
|
mpi->planes[2]=vf->dmpi->planes[2]+
|
|
|
|
vf->dmpi->stride[2]*((vf->dmpi->height>>mpi->chroma_y_shift)-1);
|
|
|
|
mpi->stride[2]=-vf->dmpi->stride[2];
|
2002-04-11 03:17:14 +00:00
|
|
|
}
|
|
|
|
mpi->flags|=MP_IMGFLAG_DIRECT;
|
2003-05-20 18:36:55 +00:00
|
|
|
mpi->priv=(void*)vf->dmpi;
|
2002-04-11 03:17:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-10 22:18:32 +00:00
|
|
|
static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){
|
2002-04-11 03:17:14 +00:00
|
|
|
if(mpi->flags&MP_IMGFLAG_DIRECT){
|
2002-09-10 22:18:32 +00:00
|
|
|
// we've used DR, so we're ready...
|
2003-02-04 18:53:33 +00:00
|
|
|
if(!(mpi->flags&MP_IMGFLAG_PLANAR))
|
|
|
|
((mp_image_t*)mpi->priv)->planes[1] = mpi->planes[1]; // passthrough rgb8 palette
|
2002-11-07 10:21:18 +00:00
|
|
|
return vf_next_put_image(vf,(mp_image_t*)mpi->priv);
|
2002-04-11 03:17:14 +00:00
|
|
|
}
|
|
|
|
|
2003-05-20 18:36:55 +00:00
|
|
|
vf->dmpi=vf_get_image(vf->next,mpi->imgfmt,
|
2002-04-18 22:21:54 +00:00
|
|
|
MP_IMGTYPE_EXPORT, MP_IMGFLAG_ACCEPT_STRIDE,
|
2002-04-11 03:17:14 +00:00
|
|
|
mpi->width, mpi->height);
|
|
|
|
|
|
|
|
// set up mpi as a upside-down image of dmpi:
|
2003-05-20 18:36:55 +00:00
|
|
|
vf->dmpi->planes[0]=mpi->planes[0]+
|
2002-04-11 03:17:14 +00:00
|
|
|
mpi->stride[0]*(mpi->height-1);
|
2003-05-20 18:36:55 +00:00
|
|
|
vf->dmpi->stride[0]=-mpi->stride[0];
|
|
|
|
if(vf->dmpi->flags&MP_IMGFLAG_PLANAR){
|
|
|
|
vf->dmpi->planes[1]=mpi->planes[1]+
|
2002-06-23 21:08:31 +00:00
|
|
|
mpi->stride[1]*((mpi->height>>mpi->chroma_y_shift)-1);
|
2003-05-20 18:36:55 +00:00
|
|
|
vf->dmpi->stride[1]=-mpi->stride[1];
|
|
|
|
vf->dmpi->planes[2]=mpi->planes[2]+
|
2002-06-23 21:08:31 +00:00
|
|
|
mpi->stride[2]*((mpi->height>>mpi->chroma_y_shift)-1);
|
2003-05-20 18:36:55 +00:00
|
|
|
vf->dmpi->stride[2]=-mpi->stride[2];
|
2002-09-03 20:26:32 +00:00
|
|
|
} else
|
2003-05-20 18:36:55 +00:00
|
|
|
vf->dmpi->planes[1]=mpi->planes[1]; // passthru bgr8 palette!!!
|
2002-04-11 03:17:14 +00:00
|
|
|
|
2003-05-20 18:36:55 +00:00
|
|
|
return vf_next_put_image(vf,vf->dmpi);
|
2002-04-11 03:17:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================//
|
|
|
|
|
|
|
|
static int open(vf_instance_t *vf, char* args){
|
2002-05-20 02:27:10 +00:00
|
|
|
vf->config=config;
|
2002-04-11 03:17:14 +00:00
|
|
|
vf->get_image=get_image;
|
|
|
|
vf->put_image=put_image;
|
2002-04-11 20:56:17 +00:00
|
|
|
vf->default_reqs=VFCAP_ACCEPT_STRIDE;
|
2002-04-11 03:17:14 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
vf_info_t vf_info_flip = {
|
|
|
|
"flip image upside-down",
|
|
|
|
"flip",
|
|
|
|
"A'rpi",
|
|
|
|
"",
|
2003-03-15 18:01:02 +00:00
|
|
|
open,
|
|
|
|
NULL
|
2002-04-11 03:17:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//===========================================================================//
|