1
mirror of https://github.com/mpv-player/mpv synced 2024-09-12 23:45:53 +02:00

Move Apple gcc AltiVec vector declaration syntax to libavutil.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24143 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-08-24 15:04:14 +00:00
parent 835443cdfe
commit 64681afa04
2 changed files with 0 additions and 12 deletions

View File

@ -21,12 +21,6 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifdef SYS_DARWIN
#define AVV(x...) (x)
#else
#define AVV(x...) {x}
#endif
#define vzero vec_splat_s32(0)
static inline void

View File

@ -27,12 +27,6 @@
#include "avutil.h"
#ifdef SYS_DARWIN
#define AVV(x...) (x)
#else
#define AVV(x...) {x}
#endif
#define MAX_FILTER_SIZE 256
typedef int (*SwsFunc)(struct SwsContext *context, uint8_t* src[], int srcStride[], int srcSliceY,