Commit 40041536 authored by lu_zero's avatar lu_zero

Make ffmpeg better support pic - from Diego Pettenò <flameeyes@gentoo.org>

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5631 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8fcb6608
...@@ -18,6 +18,10 @@ ...@@ -18,6 +18,10 @@
#define M_PI 3.14159265358979323846 #define M_PI 3.14159265358979323846
#endif #endif
#if ( defined(__PIC__) || defined(__pic__) ) && ! defined(PIC)
# define PIC
#endif
#ifdef HAVE_AV_CONFIG_H #ifdef HAVE_AV_CONFIG_H
/* only include the following when compiling package */ /* only include the following when compiling package */
# include "config.h" # include "config.h"
......
...@@ -58,6 +58,10 @@ ...@@ -58,6 +58,10 @@
#define TEMP_NOISE_FILTER 0x100000 #define TEMP_NOISE_FILTER 0x100000
#define FORCE_QUANT 0x200000 #define FORCE_QUANT 0x200000
#if ( defined(__PIC__) || defined(__pic__) ) && ! defined(PIC)
# define PIC
#endif
//use if u want a faster postprocessing code //use if u want a faster postprocessing code
//cant differentiate between chroma & luma filters (both on or both off) //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 //obviosly the -pp option at the commandline has no effect except turning the here selected
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment