Pass quant tables to next filters

Fix problem when softskip is before pp. It disabled the pp filter (with no warning), since pp needs the quant tables.
pach by Trent Piepho % xyzzy A speakeasy P org %
Original thread:
date	Dec 5, 2006 11:40 AM
subject	[MPlayer-dev-eng] softskip doesn't copy quant tables


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21714 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
gpoirier 2006-12-21 14:59:39 +00:00
parent 36c8e58b67
commit c5c8169b47
1 changed files with 1 additions and 0 deletions

View File

@ -24,6 +24,7 @@ static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts)
dmpi = vf_get_image(vf->next, mpi->imgfmt,
MP_IMGTYPE_EXPORT, 0, mpi->width, mpi->height);
vf_clone_mpi_attributes(dmpi, mpi);
dmpi->planes[0] = mpi->planes[0];
dmpi->stride[0] = mpi->stride[0];