# HG changeset patch # User gpoirier # Date 1166713179 0 # Node ID 009635b1292431b61047380ddbdd5998329c7a14 # Parent 26d81c6c425a90dbd31f6b164db134493a82f603 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 diff -r 26d81c6c425a -r 009635b12924 libmpcodecs/vf_softskip.c --- a/libmpcodecs/vf_softskip.c Thu Dec 21 09:45:07 2006 +0000 +++ b/libmpcodecs/vf_softskip.c Thu Dec 21 14:59:39 2006 +0000 @@ -24,6 +24,7 @@ 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];