mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
PPC: Move types_altivec.h and util_altivec.h from libavcodec to libavutil
This will allow for easier implementation of Altivec functions in libraries other than libavcodec.
This commit is contained in:
parent
94d2b0d2fd
commit
98db4e2a4e
@ -24,9 +24,9 @@
|
||||
#if HAVE_ALTIVEC_H
|
||||
#include <altivec.h>
|
||||
#endif
|
||||
#include "libavutil/ppc/types_altivec.h"
|
||||
#include "libavutil/ppc/util_altivec.h"
|
||||
#include "libavcodec/dsputil.h"
|
||||
#include "util_altivec.h"
|
||||
#include "types_altivec.h"
|
||||
#include "dsputil_altivec.h"
|
||||
|
||||
static int sad16_x2_altivec(void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h)
|
||||
|
@ -19,9 +19,10 @@
|
||||
* License along with Libav; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include "libavutil/ppc/types_altivec.h"
|
||||
#include "libavutil/ppc/util_altivec.h"
|
||||
#include "libavcodec/fft.h"
|
||||
#include "util_altivec.h"
|
||||
#include "types_altivec.h"
|
||||
|
||||
/**
|
||||
* Do a complex FFT with the parameters defined in ff_fft_init(). The
|
||||
|
@ -18,10 +18,10 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include "libavutil/ppc/util_altivec.h"
|
||||
#include "libavcodec/dsputil.h"
|
||||
|
||||
#include "dsputil_altivec.h"
|
||||
#include "util_altivec.h"
|
||||
|
||||
static void vector_fmul_altivec(float *dst, const float *src0, const float *src1, int len)
|
||||
{
|
||||
|
@ -20,8 +20,8 @@
|
||||
|
||||
#include "libavcodec/fmtconvert.h"
|
||||
|
||||
#include "libavutil/ppc/util_altivec.h"
|
||||
#include "dsputil_altivec.h"
|
||||
#include "util_altivec.h"
|
||||
|
||||
static void int32_to_float_fmul_scalar_altivec(float *dst, const int *src, float mul, int len)
|
||||
{
|
||||
|
@ -20,9 +20,9 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include "libavutil/ppc/types_altivec.h"
|
||||
#include "libavutil/ppc/util_altivec.h"
|
||||
#include "libavcodec/dsputil.h"
|
||||
#include "util_altivec.h"
|
||||
#include "types_altivec.h"
|
||||
#include "dsputil_altivec.h"
|
||||
|
||||
/*
|
||||
|
@ -19,13 +19,13 @@
|
||||
*/
|
||||
|
||||
#include "libavutil/cpu.h"
|
||||
#include "libavutil/ppc/types_altivec.h"
|
||||
#include "libavutil/ppc/util_altivec.h"
|
||||
#include "libavcodec/dsputil.h"
|
||||
#include "libavcodec/h264data.h"
|
||||
#include "libavcodec/h264dsp.h"
|
||||
|
||||
#include "dsputil_altivec.h"
|
||||
#include "util_altivec.h"
|
||||
#include "types_altivec.h"
|
||||
|
||||
#define PUT_OP_U8_ALTIVEC(d, s, dst) d = s
|
||||
#define AVG_OP_U8_ALTIVEC(d, s, dst) d = vec_avg(dst, s)
|
||||
|
@ -41,8 +41,8 @@
|
||||
#if HAVE_ALTIVEC_H
|
||||
#include <altivec.h>
|
||||
#endif
|
||||
#include "libavutil/ppc/types_altivec.h"
|
||||
#include "libavcodec/dsputil.h"
|
||||
#include "types_altivec.h"
|
||||
#include "dsputil_altivec.h"
|
||||
|
||||
#define IDCT_HALF \
|
||||
|
@ -28,12 +28,11 @@
|
||||
#include <altivec.h>
|
||||
#endif
|
||||
|
||||
#include "libavutil/ppc/types_altivec.h"
|
||||
#include "libavcodec/dsputil.h"
|
||||
|
||||
#include "dsputil_altivec.h"
|
||||
|
||||
#include "types_altivec.h"
|
||||
|
||||
static int ssd_int8_vs_int16_altivec(const int8_t *pix1, const int16_t *pix2,
|
||||
int size) {
|
||||
int i, size16;
|
||||
|
@ -20,7 +20,7 @@
|
||||
*/
|
||||
|
||||
#include "dsputil_altivec.h"
|
||||
#include "util_altivec.h"
|
||||
#include "libavutil/ppc/util_altivec.h"
|
||||
#include "libavcodec/dsputil.h"
|
||||
#include "libavcodec/mpegaudiodsp.h"
|
||||
|
||||
|
@ -23,12 +23,13 @@
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "libavutil/cpu.h"
|
||||
#include "libavutil/ppc/types_altivec.h"
|
||||
#include "libavutil/ppc/util_altivec.h"
|
||||
#include "libavcodec/dsputil.h"
|
||||
#include "libavcodec/mpegvideo.h"
|
||||
|
||||
#include "util_altivec.h"
|
||||
#include "types_altivec.h"
|
||||
#include "dsputil_altivec.h"
|
||||
|
||||
/* AltiVec version of dct_unquantize_h263
|
||||
|
@ -19,12 +19,11 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include "libavutil/ppc/types_altivec.h"
|
||||
#include "libavutil/ppc/util_altivec.h"
|
||||
#include "libavcodec/dsputil.h"
|
||||
#include "libavcodec/vc1dsp.h"
|
||||
|
||||
#include "util_altivec.h"
|
||||
#include "dsputil_altivec.h"
|
||||
|
||||
// main steps of 8x8 transform
|
||||
#define STEP8(s0, s1, s2, s3, s4, s5, s6, s7, vec_rnd) \
|
||||
do { \
|
||||
|
@ -18,9 +18,9 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include "libavutil/ppc/types_altivec.h"
|
||||
#include "libavutil/ppc/util_altivec.h"
|
||||
#include "libavcodec/dsputil.h"
|
||||
#include "util_altivec.h"
|
||||
#include "types_altivec.h"
|
||||
#include "dsputil_altivec.h"
|
||||
|
||||
static const vec_s16 constants =
|
||||
|
@ -21,10 +21,10 @@
|
||||
*/
|
||||
|
||||
#include "libavutil/cpu.h"
|
||||
#include "libavutil/ppc/types_altivec.h"
|
||||
#include "libavutil/ppc/util_altivec.h"
|
||||
#include "libavcodec/vp8dsp.h"
|
||||
#include "dsputil_altivec.h"
|
||||
#include "types_altivec.h"
|
||||
#include "util_altivec.h"
|
||||
|
||||
#define REPT4(...) { __VA_ARGS__, __VA_ARGS__, __VA_ARGS__, __VA_ARGS__ }
|
||||
|
||||
|
@ -18,8 +18,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#ifndef AVCODEC_PPC_TYPES_ALTIVEC_H
|
||||
#define AVCODEC_PPC_TYPES_ALTIVEC_H
|
||||
#ifndef AVUTIL_PPC_TYPES_ALTIVEC_H
|
||||
#define AVUTIL_PPC_TYPES_ALTIVEC_H
|
||||
|
||||
/***********************************************************************
|
||||
* Vector types
|
||||
@ -44,4 +44,4 @@
|
||||
#define zero_u32v (vec_u32) zerov
|
||||
#define zero_s32v (vec_s32) zerov
|
||||
|
||||
#endif /* AVCODEC_PPC_TYPES_ALTIVEC_H */
|
||||
#endif /* AVUTIL_PPC_TYPES_ALTIVEC_H */
|
@ -21,8 +21,8 @@
|
||||
* Contains misc utility macros and inline functions
|
||||
*/
|
||||
|
||||
#ifndef AVCODEC_PPC_UTIL_ALTIVEC_H
|
||||
#define AVCODEC_PPC_UTIL_ALTIVEC_H
|
||||
#ifndef AVUTIL_PPC_UTIL_ALTIVEC_H
|
||||
#define AVUTIL_PPC_UTIL_ALTIVEC_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
@ -115,4 +115,4 @@ static inline vec_u8 load_with_perm_vec(int offset, uint8_t *src, vec_u8 perm_ve
|
||||
return vec_perm(a, b, perm_vec);
|
||||
}
|
||||
|
||||
#endif /* AVCODEC_PPC_UTIL_ALTIVEC_H */
|
||||
#endif /* AVUTIL_PPC_UTIL_ALTIVEC_H */
|
Loading…
Reference in New Issue
Block a user