2010-01-30 16:57:40 +00:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
|
|
|
//===========================================================================//
|
|
|
|
|
2010-05-29 14:15:55 +00:00
|
|
|
static int config(struct vf_instance *vf,
|
2002-05-20 02:27:10 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2010-05-29 14:15:55 +00:00
|
|
|
static void get_image(struct vf_instance *vf, mp_image_t *mpi){
|
2002-04-11 03:17:14 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-29 14:15:55 +00:00
|
|
|
static int put_image(struct vf_instance *vf, mp_image_t *mpi, double pts){
|
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
|
2006-03-21 21:26:42 +00:00
|
|
|
return vf_next_put_image(vf,(mp_image_t*)mpi->priv, pts);
|
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);
|
2009-07-06 23:26:13 +00:00
|
|
|
|
2002-04-11 03:17:14 +00:00
|
|
|
// 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!!!
|
2009-07-06 23:26:13 +00:00
|
|
|
|
2006-03-21 21:26:42 +00:00
|
|
|
return vf_next_put_image(vf,vf->dmpi, pts);
|
2002-04-11 03:17:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================//
|
|
|
|
|
2010-02-21 13:40:49 +00:00
|
|
|
static int vf_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;
|
|
|
|
}
|
|
|
|
|
2007-12-02 14:57:15 +00:00
|
|
|
const vf_info_t vf_info_flip = {
|
2002-04-11 03:17:14 +00:00
|
|
|
"flip image upside-down",
|
|
|
|
"flip",
|
|
|
|
"A'rpi",
|
|
|
|
"",
|
2010-02-21 13:40:49 +00:00
|
|
|
vf_open,
|
2003-03-15 18:01:02 +00:00
|
|
|
NULL
|
2002-04-11 03:17:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//===========================================================================//
|