changeset 21698:009635b12924

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
author gpoirier
date Thu, 21 Dec 2006 14:59:39 +0000
parents 26d81c6c425a
children 5c909391c555
files libmpcodecs/vf_softskip.c
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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];