- 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]
25 lines
807 B
C
25 lines
807 B
C
--- modules/codec/ffmpeg/ffmpeg.c.orig Fri May 13 07:48:21 2005
|
|
+++ modules/codec/ffmpeg/ffmpeg.c Fri May 13 13:28:17 2005
|
|
@@ -42,11 +42,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>
|
|
+# include <ffmpeg/postproc/postprocess.h>
|
|
# endif
|
|
#endif
|
|
|
|
@@ -105,7 +103,7 @@
|
|
VLC_TRUE );
|
|
change_integer_range( 0, 2 );
|
|
|
|
-#ifdef LIBAVCODEC_PP
|
|
+#if defined(LIBAVCODEC_PP) && LIBAVCODEC_BUILD > 4750
|
|
add_integer( "ffmpeg-pp-q", 0, NULL, PP_Q_TEXT, PP_Q_LONGTEXT, VLC_FALSE );
|
|
add_string( "ffmpeg-pp-name", "default", NULL, LIBAVCODEC_PP_TEXT,
|
|
LIBAVCODEC_PP_LONGTEXT, VLC_TRUE );
|