diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-29 14:23:28 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-29 14:24:07 +0200 |
commit | 29daad5b98bc07b9669c22b39113f5568ef1c570 (patch) | |
tree | da5f75b91d52033bcfd57bda471fa119d730701c /libavutil/ppc/cpu.h | |
parent | 2a60666d1d94cb907060b83a182cb5302a1add4b (diff) | |
parent | f61bece684d9685b07895508e6c1c733b5564ccf (diff) | |
download | ffmpeg-29daad5b98bc07b9669c22b39113f5568ef1c570.tar.gz |
Merge commit 'f61bece684d9685b07895508e6c1c733b5564ccf'
* commit 'f61bece684d9685b07895508e6c1c733b5564ccf':
ppc: Add and use convenience macro to check for AltiVec availability
Conflicts:
libavcodec/ppc/dsputil_ppc.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/ppc/cpu.h')
-rw-r--r-- | libavutil/ppc/cpu.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/libavutil/ppc/cpu.h b/libavutil/ppc/cpu.h new file mode 100644 index 0000000000..0a212f33cb --- /dev/null +++ b/libavutil/ppc/cpu.h @@ -0,0 +1,28 @@ +/* + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * FFmpeg is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with FFmpeg; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef AVUTIL_PPC_CPU_H +#define AVUTIL_PPC_CPU_H + +#include "config.h" +#include "libavutil/cpu.h" +#include "libavutil/cpu_internal.h" + +#define PPC_ALTIVEC(flags) CPUEXT(flags, ALTIVEC) + +#endif /* AVUTIL_PPC_CPU_H */ |