From 02b199e5e93926cc106774068eb3e883826c3ae4 Mon Sep 17 00:00:00 2001 From: michael Date: Tue, 21 Mar 2006 21:26:42 +0000 Subject: passing pts through the filter layer (lets see if pts or cola comes out at the end) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17907 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpcodecs/vf_tfields.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libmpcodecs/vf_tfields.c') diff --git a/libmpcodecs/vf_tfields.c b/libmpcodecs/vf_tfields.c index f474d4a5df..1b26fb89b9 100644 --- a/libmpcodecs/vf_tfields.c +++ b/libmpcodecs/vf_tfields.c @@ -311,7 +311,7 @@ static void qpel_4tap_C(unsigned char *d, unsigned char *s, int w, int h, int ds static void (*qpel_li)(unsigned char *d, unsigned char *s, int w, int h, int ds, int ss, int up); static void (*qpel_4tap)(unsigned char *d, unsigned char *s, int w, int h, int ds, int ss, int up); -static int put_image(struct vf_instance_s* vf, mp_image_t *mpi) +static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts) { int i; int ret=0; @@ -356,7 +356,7 @@ static int put_image(struct vf_instance_s* vf, mp_image_t *mpi) dmpi->stride[1] = 2*mpi->stride[1]; dmpi->stride[2] = 2*mpi->stride[2]; } - ret |= vf_next_put_image(vf, dmpi); + ret |= vf_next_put_image(vf, dmpi, MP_NOPTS_VALUE); if (!i) vf_next_control(vf, VFCTRL_FLIP_PAGE, NULL); } break; @@ -383,7 +383,7 @@ static int put_image(struct vf_instance_s* vf, mp_image_t *mpi) deint(dmpi->planes[2], dmpi->stride[2], mpi->planes[2], mpi->stride[2], mpi->chroma_width, mpi->chroma_height, (i^!tff)); } - ret |= vf_next_put_image(vf, dmpi); + ret |= vf_next_put_image(vf, dmpi, MP_NOPTS_VALUE); if (!i) vf_next_control(vf, VFCTRL_FLIP_PAGE, NULL); } break; @@ -406,7 +406,7 @@ static int put_image(struct vf_instance_s* vf, mp_image_t *mpi) mpi->chroma_width, mpi->chroma_height/2, dmpi->stride[2], mpi->stride[2]*2, (i^!tff)); } - ret |= vf_next_put_image(vf, dmpi); + ret |= vf_next_put_image(vf, dmpi, MP_NOPTS_VALUE); if (!i) vf_next_control(vf, VFCTRL_FLIP_PAGE, NULL); } break; -- cgit v1.2.3