[Ffmpeg-cvslog] r5631 - in trunk: libavutil/common.h libpostproc/postprocess_internal.h
lu_zero
subversion
Wed Jul 5 22:32:20 CEST 2006
Author: lu_zero
Date: Wed Jul 5 22:32:19 2006
New Revision: 5631
Modified:
trunk/libavutil/common.h
trunk/libpostproc/postprocess_internal.h
Log:
Make ffmpeg better support pic - from Diego Petten? <flameeyes at gentoo.org>
Modified: trunk/libavutil/common.h
==============================================================================
--- trunk/libavutil/common.h (original)
+++ trunk/libavutil/common.h Wed Jul 5 22:32:19 2006
@@ -18,6 +18,10 @@
#define M_PI 3.14159265358979323846
#endif
+#if ( defined(__PIC__) || defined(__pic__) ) && ! defined(PIC)
+# define PIC
+#endif
+
#ifdef HAVE_AV_CONFIG_H
/* only include the following when compiling package */
# include "config.h"
Modified: trunk/libpostproc/postprocess_internal.h
==============================================================================
--- trunk/libpostproc/postprocess_internal.h (original)
+++ trunk/libpostproc/postprocess_internal.h Wed Jul 5 22:32:19 2006
@@ -58,6 +58,10 @@
#define TEMP_NOISE_FILTER 0x100000
#define FORCE_QUANT 0x200000
+#if ( defined(__PIC__) || defined(__pic__) ) && ! defined(PIC)
+# define PIC
+#endif
+
//use if u want a faster postprocessing code
//cant differentiate between chroma & luma filters (both on or both off)
//obviosly the -pp option at the commandline has no effect except turning the here selected
More information about the ffmpeg-cvslog
mailing list