2002-04-09 14:01:53 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
2005-11-18 14:39:25 +00:00
|
|
|
#include "config.h"
|
|
|
|
#include "mp_msg.h"
|
2006-03-31 00:15:47 +00:00
|
|
|
#include "help_mp.h"
|
2002-04-09 14:01:53 +00:00
|
|
|
|
2002-04-13 19:14:34 +00:00
|
|
|
#include "img_format.h"
|
|
|
|
#include "mp_image.h"
|
2002-04-09 14:01:53 +00:00
|
|
|
#include "vf.h"
|
|
|
|
|
2003-03-15 20:51:35 +00:00
|
|
|
#include "m_option.h"
|
|
|
|
#include "m_struct.h"
|
|
|
|
|
|
|
|
static struct vf_priv_s {
|
2002-04-09 14:01:53 +00:00
|
|
|
unsigned int fmt;
|
2007-01-28 16:48:01 +00:00
|
|
|
} const vf_priv_dflt = {
|
2003-03-15 20:51:35 +00:00
|
|
|
IMGFMT_YUY2
|
2002-04-09 14:01:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//===========================================================================//
|
|
|
|
|
|
|
|
static int query_format(struct vf_instance_s* vf, unsigned int fmt){
|
|
|
|
if(fmt==vf->priv->fmt)
|
|
|
|
return vf_next_query_format(vf,fmt);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int open(vf_instance_t *vf, char* args){
|
|
|
|
vf->query_format=query_format;
|
2002-05-06 22:48:59 +00:00
|
|
|
vf->default_caps=0;
|
2002-04-09 14:01:53 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2003-03-15 20:51:35 +00:00
|
|
|
#define ST_OFF(f) M_ST_OFF(struct vf_priv_s,f)
|
|
|
|
static m_option_t vf_opts_fields[] = {
|
|
|
|
{"fmt", ST_OFF(fmt), CONF_TYPE_IMGFMT, 0,0 ,0, NULL},
|
|
|
|
{ NULL, NULL, 0, 0, 0, 0, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
static m_struct_t vf_opts = {
|
|
|
|
"format",
|
|
|
|
sizeof(struct vf_priv_s),
|
|
|
|
&vf_priv_dflt,
|
|
|
|
vf_opts_fields
|
|
|
|
};
|
|
|
|
|
2007-12-02 14:57:15 +00:00
|
|
|
const vf_info_t vf_info_format = {
|
2002-04-09 14:01:53 +00:00
|
|
|
"force output format",
|
|
|
|
"format",
|
|
|
|
"A'rpi",
|
2002-04-11 20:56:17 +00:00
|
|
|
"FIXME! get_image()/put_image()",
|
2003-03-15 18:01:02 +00:00
|
|
|
open,
|
2003-03-15 20:51:35 +00:00
|
|
|
&vf_opts
|
2002-04-09 14:01:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//===========================================================================//
|