diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-02-18 14:09:35 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-07-19 02:38:22 -0700 |
commit | 1a583c0c60240adb8fa6620c6df33f1a0a0fe5d9 (patch) | |
tree | e93be3d41ac3a90deace6d9a9f3165d476d3c206 /libavcodec/ppc/fdct.h | |
parent | 5dcc201505f71b1e73e9eef12ce89d4eed252ad0 (diff) | |
download | ffmpeg-1a583c0c60240adb8fa6620c6df33f1a0a0fe5d9.tar.gz |
fdct: Move ppc-specific declarations to a header in the ppc directory
Diffstat (limited to 'libavcodec/ppc/fdct.h')
-rw-r--r-- | libavcodec/ppc/fdct.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libavcodec/ppc/fdct.h b/libavcodec/ppc/fdct.h new file mode 100644 index 0000000000..74710354ef --- /dev/null +++ b/libavcodec/ppc/fdct.h @@ -0,0 +1,26 @@ +/* + * This file is part of Libav. + * + * Libav 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. + * + * Libav 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 Libav; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef AVCODEC_PPC_FDCT_H +#define AVCODEC_PPC_FDCT_H + +#include <stdint.h> + +void ff_fdct_altivec(int16_t *block); + +#endif /* AVCODEC_PPC_FDCT_H */ |