Index: Makefile =================================================================== RCS file: /cvsroot/mplayer/main/libmpcodecs/Makefile,v retrieving revision 1.138 diff -u -r1.138 Makefile --- libmpcodecs/Makefile 29 Dec 2004 19:51:56 -0000 1.138 +++ libmpcodecs/Makefile 19 Feb 2005 18:33:55 -0000 @@ -33,6 +33,7 @@ ifeq ($(PNG),yes) VIDEO_SRCS += vd_mpng.c +VFILTER_SRCS += vf_deblendlogo.c endif ifeq ($(JPEG),yes) Index: vf.c =================================================================== RCS file: /cvsroot/mplayer/main/libmpcodecs/vf.c,v retrieving revision 1.111 diff -u -r1.111 vf.c --- libmpcodecsvf.c 16 Feb 2005 23:46:59 -0000 1.111 +++ libmpcodecsvf.c 19 Feb 2005 18:33:56 -0000 @@ -95,6 +95,9 @@ extern vf_info_t vf_info_divtc; extern vf_info_t vf_info_harddup; extern vf_info_t vf_info_softskip; +#ifdef HAVE_PNG +extern vf_info_t vf_info_deblendlogo; +#endif // list of available filters: static vf_info_t* filter_list[]={ @@ -179,6 +182,9 @@ &vf_info_divtc, &vf_info_harddup, &vf_info_softskip, +#ifdef HAVE_PNG + &vf_info_deblendlogo, +#endif NULL };