mirror of
https://git.freebsd.org/ports.git
synced 2025-06-22 21:20:31 -04:00
- Use OPTIONS - Install .desktop file and icon in share/applications and share/pixmaps instead of share/gnome/ - Changed Knobs WITHOUT_FAAD --> WITH_FAAD (disabled by default) WITH_LAME --> WITHOUT_LAME (enabled by default, disabled for package building) WITHOUT_SDL --> WITH_SDL (disabled by default) WITHOUT_TRANSCODE --> WITH_TRANSCODE (disabled by default) WITHOUT_DVD removed. - New knobs WITH_CORBA -- Corba interface via orbit2 WITH_DAAP -- iTunes(R) music shares WITHOUT_DVDNAV -- DVD (dvd menus) support WITH_DVDREAD -- Regular DVD support (non-menu) WITH_DIRAC -- diace general-purpose video codec WITHOUT_OGG -- OGG audio decoder WITH_SMB -- Samba access module WITH_TWOLAME -- Mpeg layer 2 audio Support NOTE: WITH_ knobs are disabled by default. WITHOUT_ knobs are enabled by default. NOTE2: It is recommended that you use multimedia/ffmpeg-devel instead of multimedia/ffmpeg if you want to use any of ffmpeg's postprocess features. PR: ports/80963 [1] Repocopied by: marcus [1]
18 lines
493 B
C
18 lines
493 B
C
--- modules/codec/ffmpeg/postprocess.c.orig Fri May 13 07:48:21 2005
|
|
+++ modules/codec/ffmpeg/postprocess.c Sat May 14 00:11:53 2005
|
|
@@ -35,13 +35,9 @@
|
|
|
|
#include "ffmpeg.h"
|
|
|
|
-#ifdef LIBAVCODEC_PP
|
|
+#if defined(LIBAVCODEC_PP) && LIBAVCODEC_BUILD > 4750
|
|
|
|
-#ifdef HAVE_POSTPROC_POSTPROCESS_H
|
|
-# include <postproc/postprocess.h>
|
|
-#else
|
|
-# include <libpostproc/postprocess.h>
|
|
-#endif
|
|
+#include <ffmpeg/postproc/postprocess.h>
|
|
|
|
#ifndef PP_CPU_CAPS_ALTIVEC
|
|
# define PP_CPU_CAPS_ALTIVEC 0
|