[MPlayer-cvslog] r21714 - trunk/libmpcodecs/vf_softskip.c
gpoirier
subversion at mplayerhq.hu
Thu Dec 21 15:59:39 CET 2006
Author: gpoirier
Date: Thu Dec 21 15:59:39 2006
New Revision: 21714
Modified:
trunk/libmpcodecs/vf_softskip.c
Log:
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
Modified: trunk/libmpcodecs/vf_softskip.c
==============================================================================
--- trunk/libmpcodecs/vf_softskip.c (original)
+++ trunk/libmpcodecs/vf_softskip.c Thu Dec 21 15:59:39 2006
@@ -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];
More information about the MPlayer-cvslog
mailing list