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.
|
|
|
|
*/
|
|
|
|
|
2003-08-18 15:24:08 +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"
|
|
|
|
#include "cpudetect.h"
|
2003-08-18 15:24:08 +00:00
|
|
|
|
|
|
|
#include "img_format.h"
|
|
|
|
#include "mp_image.h"
|
|
|
|
#include "vf.h"
|
|
|
|
|
2005-11-18 14:39:25 +00:00
|
|
|
#include "libvo/fastmemcpy.h"
|
2003-08-18 15:24:08 +00:00
|
|
|
|
|
|
|
#include "pullup.h"
|
|
|
|
|
2004-06-10 05:06:34 +00:00
|
|
|
#undef MAX
|
|
|
|
#define MAX(a,b) ((a)>(b)?(a):(b))
|
|
|
|
|
2003-08-18 15:24:08 +00:00
|
|
|
struct vf_priv_s {
|
|
|
|
struct pullup_context *ctx;
|
|
|
|
int init;
|
|
|
|
int fakecount;
|
2003-12-11 16:07:14 +00:00
|
|
|
char *qbuf;
|
vf_*: fix pts values passed to the next filter
Many video filters failed to calculate or even just pass through pts
values for their output frames. Fix this, and also make the two
remaining filters that called vf_next_put_image() twice for the same
input frame (vf_softpulldown, vf_telecine) use vf_queue_frame() so
that e.g. framestepping properly sees both frames.
Changed filters: vf_bmovl, vf_detc, vf_divtc, vf_filmdint, vf_ivtc,
vf_lavc, vf_phase, vf_pullup, vf_softpulldown, vf_telecine, vf_tile,
vf_tinterlace.
2011-04-23 16:56:47 +00:00
|
|
|
double lastpts;
|
2003-08-18 15:24:08 +00:00
|
|
|
};
|
|
|
|
|
2010-05-29 14:15:55 +00:00
|
|
|
static void init_pullup(struct vf_instance *vf, mp_image_t *mpi)
|
2003-08-18 15:24:08 +00:00
|
|
|
{
|
|
|
|
struct pullup_context *c = vf->priv->ctx;
|
|
|
|
|
|
|
|
if (mpi->flags & MP_IMGFLAG_PLANAR) {
|
|
|
|
c->format = PULLUP_FMT_Y;
|
2003-12-11 16:07:14 +00:00
|
|
|
c->nplanes = 4;
|
2003-08-18 15:24:08 +00:00
|
|
|
pullup_preinit_context(c);
|
|
|
|
c->bpp[0] = c->bpp[1] = c->bpp[2] = 8;
|
|
|
|
c->w[0] = mpi->w;
|
|
|
|
c->h[0] = mpi->h;
|
|
|
|
c->w[1] = c->w[2] = mpi->chroma_width;
|
|
|
|
c->h[1] = c->h[2] = mpi->chroma_height;
|
2003-12-11 16:07:14 +00:00
|
|
|
c->w[3] = ((mpi->w+15)/16) * ((mpi->h+15)/16);
|
|
|
|
c->h[3] = 2;
|
2003-08-18 15:24:08 +00:00
|
|
|
c->stride[0] = mpi->width;
|
|
|
|
c->stride[1] = c->stride[2] = mpi->chroma_width;
|
2003-12-11 16:07:14 +00:00
|
|
|
c->stride[3] = c->w[3];
|
2003-08-18 15:24:08 +00:00
|
|
|
c->background[1] = c->background[2] = 128;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gCpuCaps.hasMMX) c->cpu |= PULLUP_CPU_MMX;
|
|
|
|
if (gCpuCaps.hasMMX2) c->cpu |= PULLUP_CPU_MMX2;
|
|
|
|
if (gCpuCaps.has3DNow) c->cpu |= PULLUP_CPU_3DNOW;
|
|
|
|
if (gCpuCaps.has3DNowExt) c->cpu |= PULLUP_CPU_3DNOWEXT;
|
|
|
|
if (gCpuCaps.hasSSE) c->cpu |= PULLUP_CPU_SSE;
|
|
|
|
if (gCpuCaps.hasSSE2) c->cpu |= PULLUP_CPU_SSE2;
|
2009-07-06 23:26:13 +00:00
|
|
|
|
2003-08-18 15:24:08 +00:00
|
|
|
pullup_init_context(c);
|
|
|
|
|
|
|
|
vf->priv->init = 1;
|
2003-12-11 16:07:14 +00:00
|
|
|
vf->priv->qbuf = malloc(c->w[3]);
|
2003-08-18 15:24:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-26 22:48:59 +00:00
|
|
|
#if 0
|
2010-05-29 14:15:55 +00:00
|
|
|
static void get_image(struct vf_instance *vf, mp_image_t *mpi)
|
2003-08-18 15:24:08 +00:00
|
|
|
{
|
|
|
|
struct pullup_context *c = vf->priv->ctx;
|
|
|
|
struct pullup_buffer *b;
|
2009-07-06 23:26:13 +00:00
|
|
|
|
2003-08-18 15:24:08 +00:00
|
|
|
if (mpi->type == MP_IMGTYPE_STATIC) return;
|
|
|
|
|
|
|
|
if (!vf->priv->init) init_pullup(vf, mpi);
|
|
|
|
|
|
|
|
b = pullup_get_buffer(c, 2);
|
|
|
|
if (!b) return; /* shouldn't happen... */
|
|
|
|
|
|
|
|
mpi->priv = b;
|
2009-07-06 23:26:13 +00:00
|
|
|
|
2003-08-18 15:24:08 +00:00
|
|
|
mpi->planes[0] = b->planes[0];
|
|
|
|
mpi->planes[1] = b->planes[1];
|
|
|
|
mpi->planes[2] = b->planes[2];
|
|
|
|
mpi->stride[0] = c->stride[0];
|
|
|
|
mpi->stride[1] = c->stride[1];
|
|
|
|
mpi->stride[2] = c->stride[2];
|
|
|
|
|
|
|
|
mpi->flags |= MP_IMGFLAG_DIRECT;
|
|
|
|
mpi->flags &= ~MP_IMGFLAG_DRAW_CALLBACK;
|
|
|
|
}
|
2007-09-26 22:48:59 +00:00
|
|
|
#endif
|
2003-08-18 15:24:08 +00:00
|
|
|
|
2010-05-29 14:15:55 +00:00
|
|
|
static int put_image(struct vf_instance *vf, mp_image_t *mpi, double pts)
|
2003-08-18 15:24:08 +00:00
|
|
|
{
|
|
|
|
struct pullup_context *c = vf->priv->ctx;
|
|
|
|
struct pullup_buffer *b;
|
|
|
|
struct pullup_frame *f;
|
|
|
|
mp_image_t *dmpi;
|
|
|
|
int ret;
|
|
|
|
int p;
|
2003-12-11 16:07:14 +00:00
|
|
|
int i;
|
2009-07-06 23:26:13 +00:00
|
|
|
|
2003-08-18 15:24:08 +00:00
|
|
|
if (!vf->priv->init) init_pullup(vf, mpi);
|
2009-07-06 23:26:13 +00:00
|
|
|
|
2003-08-18 15:24:08 +00:00
|
|
|
if (mpi->flags & MP_IMGFLAG_DIRECT) {
|
|
|
|
b = mpi->priv;
|
|
|
|
mpi->priv = 0;
|
|
|
|
} else {
|
|
|
|
b = pullup_get_buffer(c, 2);
|
|
|
|
if (!b) {
|
|
|
|
mp_msg(MSGT_VFILTER,MSGL_ERR,"Could not get buffer from pullup!\n");
|
|
|
|
f = pullup_get_frame(c);
|
|
|
|
pullup_release_frame(f);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
memcpy_pic(b->planes[0], mpi->planes[0], mpi->w, mpi->h,
|
|
|
|
c->stride[0], mpi->stride[0]);
|
|
|
|
if (mpi->flags & MP_IMGFLAG_PLANAR) {
|
|
|
|
memcpy_pic(b->planes[1], mpi->planes[1],
|
|
|
|
mpi->chroma_width, mpi->chroma_height,
|
|
|
|
c->stride[1], mpi->stride[1]);
|
|
|
|
memcpy_pic(b->planes[2], mpi->planes[2],
|
|
|
|
mpi->chroma_width, mpi->chroma_height,
|
|
|
|
c->stride[2], mpi->stride[2]);
|
|
|
|
}
|
|
|
|
}
|
2003-12-11 16:07:14 +00:00
|
|
|
if (mpi->qscale) {
|
2007-06-05 14:27:54 +00:00
|
|
|
fast_memcpy(b->planes[3], mpi->qscale, c->w[3]);
|
|
|
|
fast_memcpy(b->planes[3]+c->w[3], mpi->qscale, c->w[3]);
|
2003-12-11 16:07:14 +00:00
|
|
|
}
|
2003-08-18 15:24:08 +00:00
|
|
|
|
|
|
|
p = mpi->fields & MP_IMGFIELD_TOP_FIRST ? 0 :
|
|
|
|
(mpi->fields & MP_IMGFIELD_ORDERED ? 1 : 0);
|
vf_*: fix pts values passed to the next filter
Many video filters failed to calculate or even just pass through pts
values for their output frames. Fix this, and also make the two
remaining filters that called vf_next_put_image() twice for the same
input frame (vf_softpulldown, vf_telecine) use vf_queue_frame() so
that e.g. framestepping properly sees both frames.
Changed filters: vf_bmovl, vf_detc, vf_divtc, vf_filmdint, vf_ivtc,
vf_lavc, vf_phase, vf_pullup, vf_softpulldown, vf_telecine, vf_tile,
vf_tinterlace.
2011-04-23 16:56:47 +00:00
|
|
|
|
|
|
|
if (pts == MP_NOPTS_VALUE) {
|
|
|
|
pullup_submit_field(c, b, p, MP_NOPTS_VALUE);
|
|
|
|
pullup_submit_field(c, b, p^1, MP_NOPTS_VALUE);
|
|
|
|
if (mpi->fields & MP_IMGFIELD_REPEAT_FIRST)
|
|
|
|
pullup_submit_field(c, b, p, MP_NOPTS_VALUE);
|
|
|
|
} else {
|
|
|
|
double delta;
|
|
|
|
if (vf->priv->lastpts == MP_NOPTS_VALUE)
|
|
|
|
delta = 1001.0/60000.0; // delta = field time distance
|
|
|
|
else
|
|
|
|
delta = (pts - vf->priv->lastpts) / 2;
|
2011-06-01 06:42:24 +00:00
|
|
|
if (delta <= 0.0 || delta >= 0.5)
|
|
|
|
delta = 0.0;
|
|
|
|
vf->priv->lastpts = pts;
|
|
|
|
if (mpi->fields & MP_IMGFIELD_REPEAT_FIRST) {
|
|
|
|
pullup_submit_field(c, b, p, pts - delta);
|
vf_*: fix pts values passed to the next filter
Many video filters failed to calculate or even just pass through pts
values for their output frames. Fix this, and also make the two
remaining filters that called vf_next_put_image() twice for the same
input frame (vf_softpulldown, vf_telecine) use vf_queue_frame() so
that e.g. framestepping properly sees both frames.
Changed filters: vf_bmovl, vf_detc, vf_divtc, vf_filmdint, vf_ivtc,
vf_lavc, vf_phase, vf_pullup, vf_softpulldown, vf_telecine, vf_tile,
vf_tinterlace.
2011-04-23 16:56:47 +00:00
|
|
|
pullup_submit_field(c, b, p^1, pts);
|
2011-06-01 06:42:24 +00:00
|
|
|
pullup_submit_field(c, b, p, pts + delta);
|
vf_*: fix pts values passed to the next filter
Many video filters failed to calculate or even just pass through pts
values for their output frames. Fix this, and also make the two
remaining filters that called vf_next_put_image() twice for the same
input frame (vf_softpulldown, vf_telecine) use vf_queue_frame() so
that e.g. framestepping properly sees both frames.
Changed filters: vf_bmovl, vf_detc, vf_divtc, vf_filmdint, vf_ivtc,
vf_lavc, vf_phase, vf_pullup, vf_softpulldown, vf_telecine, vf_tile,
vf_tinterlace.
2011-04-23 16:56:47 +00:00
|
|
|
} else {
|
2011-06-01 06:42:24 +00:00
|
|
|
pullup_submit_field(c, b, p, pts - delta * 0.5);
|
|
|
|
pullup_submit_field(c, b, p^1, pts + delta * 0.5);
|
vf_*: fix pts values passed to the next filter
Many video filters failed to calculate or even just pass through pts
values for their output frames. Fix this, and also make the two
remaining filters that called vf_next_put_image() twice for the same
input frame (vf_softpulldown, vf_telecine) use vf_queue_frame() so
that e.g. framestepping properly sees both frames.
Changed filters: vf_bmovl, vf_detc, vf_divtc, vf_filmdint, vf_ivtc,
vf_lavc, vf_phase, vf_pullup, vf_softpulldown, vf_telecine, vf_tile,
vf_tinterlace.
2011-04-23 16:56:47 +00:00
|
|
|
}
|
|
|
|
}
|
2003-08-18 15:24:08 +00:00
|
|
|
|
|
|
|
pullup_release_buffer(b, 2);
|
|
|
|
|
|
|
|
f = pullup_get_frame(c);
|
|
|
|
|
|
|
|
/* Fake yes for first few frames (buffer depth) to keep from
|
|
|
|
* breaking A/V sync with G1's bad architecture... */
|
|
|
|
if (!f) return vf->priv->fakecount ? (--vf->priv->fakecount,1) : 0;
|
|
|
|
|
|
|
|
if (f->length < 2) {
|
|
|
|
pullup_release_frame(f);
|
|
|
|
f = pullup_get_frame(c);
|
|
|
|
if (!f) return 0;
|
|
|
|
if (f->length < 2) {
|
|
|
|
pullup_release_frame(f);
|
2005-03-17 00:43:55 +00:00
|
|
|
if (!(mpi->fields & MP_IMGFIELD_REPEAT_FIRST))
|
|
|
|
return 0;
|
|
|
|
f = pullup_get_frame(c);
|
|
|
|
if (!f) return 0;
|
|
|
|
if (f->length < 2) {
|
|
|
|
pullup_release_frame(f);
|
|
|
|
return 0;
|
|
|
|
}
|
2003-08-18 15:24:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-10 05:06:34 +00:00
|
|
|
#if 0
|
2003-12-11 16:07:14 +00:00
|
|
|
/* Average qscale tables from both frames. */
|
|
|
|
if (mpi->qscale) {
|
|
|
|
for (i=0; i<c->w[3]; i++) {
|
|
|
|
vf->priv->qbuf[i] = (f->ofields[0]->planes[3][i]
|
|
|
|
+ f->ofields[1]->planes[3][i+c->w[3]])>>1;
|
|
|
|
}
|
|
|
|
}
|
2004-06-10 05:06:34 +00:00
|
|
|
#else
|
|
|
|
/* Take worst of qscale tables from both frames. */
|
|
|
|
if (mpi->qscale) {
|
|
|
|
for (i=0; i<c->w[3]; i++) {
|
|
|
|
vf->priv->qbuf[i] = MAX(f->ofields[0]->planes[3][i], f->ofields[1]->planes[3][i+c->w[3]]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2003-12-11 16:07:14 +00:00
|
|
|
|
2003-08-18 15:24:08 +00:00
|
|
|
/* If the frame isn't already exportable... */
|
2003-09-01 02:54:06 +00:00
|
|
|
while (!f->buffer) {
|
|
|
|
dmpi = vf_get_image(vf->next, mpi->imgfmt,
|
|
|
|
MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE,
|
|
|
|
mpi->width, mpi->height);
|
|
|
|
/* FIXME: Is it ok to discard dmpi if it's not direct? */
|
|
|
|
if (!(dmpi->flags & MP_IMGFLAG_DIRECT)) {
|
|
|
|
pullup_pack_frame(c, f);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* Direct render fields into output buffer */
|
2003-12-11 07:52:57 +00:00
|
|
|
my_memcpy_pic(dmpi->planes[0], f->ofields[0]->planes[0],
|
2003-09-01 02:54:06 +00:00
|
|
|
mpi->w, mpi->h/2, dmpi->stride[0]*2, c->stride[0]*2);
|
|
|
|
my_memcpy_pic(dmpi->planes[0] + dmpi->stride[0],
|
2003-12-11 07:52:57 +00:00
|
|
|
f->ofields[1]->planes[0] + c->stride[0],
|
2003-09-01 02:54:06 +00:00
|
|
|
mpi->w, mpi->h/2, dmpi->stride[0]*2, c->stride[0]*2);
|
|
|
|
if (mpi->flags & MP_IMGFLAG_PLANAR) {
|
2003-12-11 07:52:57 +00:00
|
|
|
my_memcpy_pic(dmpi->planes[1], f->ofields[0]->planes[1],
|
2003-09-01 02:54:06 +00:00
|
|
|
mpi->chroma_width, mpi->chroma_height/2,
|
|
|
|
dmpi->stride[1]*2, c->stride[1]*2);
|
|
|
|
my_memcpy_pic(dmpi->planes[1] + dmpi->stride[1],
|
2003-12-11 07:52:57 +00:00
|
|
|
f->ofields[1]->planes[1] + c->stride[1],
|
2003-09-01 02:54:06 +00:00
|
|
|
mpi->chroma_width, mpi->chroma_height/2,
|
|
|
|
dmpi->stride[1]*2, c->stride[1]*2);
|
2003-12-11 07:52:57 +00:00
|
|
|
my_memcpy_pic(dmpi->planes[2], f->ofields[0]->planes[2],
|
2003-09-01 02:54:06 +00:00
|
|
|
mpi->chroma_width, mpi->chroma_height/2,
|
|
|
|
dmpi->stride[2]*2, c->stride[2]*2);
|
|
|
|
my_memcpy_pic(dmpi->planes[2] + dmpi->stride[2],
|
2003-12-11 07:52:57 +00:00
|
|
|
f->ofields[1]->planes[2] + c->stride[2],
|
2003-09-01 02:54:06 +00:00
|
|
|
mpi->chroma_width, mpi->chroma_height/2,
|
|
|
|
dmpi->stride[2]*2, c->stride[2]*2);
|
2003-08-18 15:24:08 +00:00
|
|
|
}
|
2003-09-01 02:54:06 +00:00
|
|
|
pullup_release_frame(f);
|
2003-12-11 16:07:14 +00:00
|
|
|
if (mpi->qscale) {
|
|
|
|
dmpi->qscale = vf->priv->qbuf;
|
|
|
|
dmpi->qstride = mpi->qstride;
|
|
|
|
dmpi->qscale_type = mpi->qscale_type;
|
|
|
|
}
|
vf_*: fix pts values passed to the next filter
Many video filters failed to calculate or even just pass through pts
values for their output frames. Fix this, and also make the two
remaining filters that called vf_next_put_image() twice for the same
input frame (vf_softpulldown, vf_telecine) use vf_queue_frame() so
that e.g. framestepping properly sees both frames.
Changed filters: vf_bmovl, vf_detc, vf_divtc, vf_filmdint, vf_ivtc,
vf_lavc, vf_phase, vf_pullup, vf_softpulldown, vf_telecine, vf_tile,
vf_tinterlace.
2011-04-23 16:56:47 +00:00
|
|
|
return vf_next_put_image(vf, dmpi, f->pts);
|
2003-08-18 15:24:08 +00:00
|
|
|
}
|
|
|
|
dmpi = vf_get_image(vf->next, mpi->imgfmt,
|
|
|
|
MP_IMGTYPE_EXPORT, MP_IMGFLAG_ACCEPT_STRIDE,
|
|
|
|
mpi->width, mpi->height);
|
|
|
|
|
|
|
|
dmpi->planes[0] = f->buffer->planes[0];
|
|
|
|
dmpi->planes[1] = f->buffer->planes[1];
|
|
|
|
dmpi->planes[2] = f->buffer->planes[2];
|
2009-07-06 23:26:13 +00:00
|
|
|
|
2003-08-18 15:24:08 +00:00
|
|
|
dmpi->stride[0] = c->stride[0];
|
|
|
|
dmpi->stride[1] = c->stride[1];
|
|
|
|
dmpi->stride[2] = c->stride[2];
|
2009-07-06 23:26:13 +00:00
|
|
|
|
2003-12-11 16:07:14 +00:00
|
|
|
if (mpi->qscale) {
|
|
|
|
dmpi->qscale = vf->priv->qbuf;
|
|
|
|
dmpi->qstride = mpi->qstride;
|
|
|
|
dmpi->qscale_type = mpi->qscale_type;
|
|
|
|
}
|
vf_*: fix pts values passed to the next filter
Many video filters failed to calculate or even just pass through pts
values for their output frames. Fix this, and also make the two
remaining filters that called vf_next_put_image() twice for the same
input frame (vf_softpulldown, vf_telecine) use vf_queue_frame() so
that e.g. framestepping properly sees both frames.
Changed filters: vf_bmovl, vf_detc, vf_divtc, vf_filmdint, vf_ivtc,
vf_lavc, vf_phase, vf_pullup, vf_softpulldown, vf_telecine, vf_tile,
vf_tinterlace.
2011-04-23 16:56:47 +00:00
|
|
|
ret = vf_next_put_image(vf, dmpi, f->pts);
|
2003-08-18 15:24:08 +00:00
|
|
|
pullup_release_frame(f);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-05-29 14:15:55 +00:00
|
|
|
static int query_format(struct vf_instance *vf, unsigned int fmt)
|
2003-08-18 15:24:08 +00:00
|
|
|
{
|
|
|
|
/* FIXME - support more formats */
|
|
|
|
switch (fmt) {
|
|
|
|
case IMGFMT_YV12:
|
|
|
|
case IMGFMT_IYUV:
|
|
|
|
case IMGFMT_I420:
|
|
|
|
return vf_next_query_format(vf, fmt);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-05-29 14:15:55 +00:00
|
|
|
static int config(struct vf_instance *vf,
|
2003-08-18 15:24:08 +00:00
|
|
|
int width, int height, int d_width, int d_height,
|
|
|
|
unsigned int flags, unsigned int outfmt)
|
|
|
|
{
|
|
|
|
if (height&3) return 0;
|
|
|
|
return vf_next_config(vf, width, height, d_width, d_height, flags, outfmt);
|
|
|
|
}
|
|
|
|
|
2010-05-29 14:15:55 +00:00
|
|
|
static void uninit(struct vf_instance *vf)
|
2003-08-18 15:24:08 +00:00
|
|
|
{
|
|
|
|
pullup_free_context(vf->priv->ctx);
|
|
|
|
free(vf->priv);
|
|
|
|
}
|
|
|
|
|
2010-02-21 13:40:49 +00:00
|
|
|
static int vf_open(vf_instance_t *vf, char *args)
|
2003-08-18 15:24:08 +00:00
|
|
|
{
|
|
|
|
struct vf_priv_s *p;
|
2004-06-10 05:20:50 +00:00
|
|
|
struct pullup_context *c;
|
2005-03-20 20:03:41 +00:00
|
|
|
//vf->get_image = get_image;
|
2003-08-18 15:24:08 +00:00
|
|
|
vf->put_image = put_image;
|
|
|
|
vf->config = config;
|
|
|
|
vf->query_format = query_format;
|
|
|
|
vf->uninit = uninit;
|
|
|
|
vf->default_reqs = VFCAP_ACCEPT_STRIDE;
|
|
|
|
vf->priv = p = calloc(1, sizeof(struct vf_priv_s));
|
2004-06-10 05:20:50 +00:00
|
|
|
p->ctx = c = pullup_alloc_context();
|
2005-03-20 20:37:44 +00:00
|
|
|
p->fakecount = 1;
|
2005-04-01 16:24:46 +00:00
|
|
|
c->verbose = verbose>0;
|
2004-06-10 05:20:50 +00:00
|
|
|
c->junk_left = c->junk_right = 1;
|
|
|
|
c->junk_top = c->junk_bottom = 4;
|
|
|
|
c->strict_breaks = 0;
|
2004-09-06 21:25:59 +00:00
|
|
|
c->metric_plane = 0;
|
2004-06-10 05:20:50 +00:00
|
|
|
if (args) {
|
2004-09-06 21:25:59 +00:00
|
|
|
sscanf(args, "%d:%d:%d:%d:%d:%d", &c->junk_left, &c->junk_right, &c->junk_top, &c->junk_bottom, &c->strict_breaks, &c->metric_plane);
|
2004-06-10 05:20:50 +00:00
|
|
|
}
|
2003-08-18 15:24:08 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-02-13 19:21:39 +00:00
|
|
|
const vf_info_t vf_info_pullup = {
|
2003-08-18 15:24:08 +00:00
|
|
|
"pullup (from field sequence to frames)",
|
|
|
|
"pullup",
|
|
|
|
"Rich Felker",
|
|
|
|
"",
|
2010-02-21 13:40:49 +00:00
|
|
|
vf_open,
|
2003-08-18 15:24:08 +00:00
|
|
|
NULL
|
|
|
|
};
|