add libwma codec.
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@26 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
parent
26021f5889
commit
52882fc193
|
@ -0,0 +1,3 @@
|
||||||
|
wmadeci.c
|
||||||
|
wmafixed.c
|
||||||
|
bitstream.c
|
|
@ -0,0 +1,24 @@
|
||||||
|
#ifndef _ASF_H
|
||||||
|
#define _ASF_H
|
||||||
|
|
||||||
|
#include <inttypes.h>
|
||||||
|
|
||||||
|
/* ASF codec IDs */
|
||||||
|
#define ASF_CODEC_ID_WMAV1 0x160
|
||||||
|
#define ASF_CODEC_ID_WMAV2 0x161
|
||||||
|
|
||||||
|
struct asf_waveformatex_s {
|
||||||
|
uint32_t packet_size;
|
||||||
|
int audiostream;
|
||||||
|
uint16_t codec_id;
|
||||||
|
uint16_t channels;
|
||||||
|
uint32_t rate;
|
||||||
|
uint32_t bitrate;
|
||||||
|
uint16_t blockalign;
|
||||||
|
uint16_t bitspersample;
|
||||||
|
uint16_t datalen;
|
||||||
|
uint8_t data[6];
|
||||||
|
};
|
||||||
|
typedef struct asf_waveformatex_s asf_waveformatex_t;
|
||||||
|
|
||||||
|
#endif
|
|
@ -0,0 +1,228 @@
|
||||||
|
/********************************************************************
|
||||||
|
* *
|
||||||
|
* THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE. *
|
||||||
|
* *
|
||||||
|
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
|
||||||
|
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
|
||||||
|
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
|
||||||
|
* *
|
||||||
|
* THE OggVorbis 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2002 *
|
||||||
|
* BY THE Xiph.Org FOUNDATION http://www.xiph.org/ *
|
||||||
|
* *
|
||||||
|
********************************************************************
|
||||||
|
|
||||||
|
function: arm7 and later wide math functions
|
||||||
|
|
||||||
|
********************************************************************/
|
||||||
|
|
||||||
|
#ifndef __ASM_ARM_H__
|
||||||
|
#define __ASM_ARM_H__
|
||||||
|
|
||||||
|
#if !defined(_V_WIDE_MATH) && !defined(_LOW_ACCURACY_)
|
||||||
|
#define _V_WIDE_MATH
|
||||||
|
|
||||||
|
static inline int32_t MULT32(int32_t x, int32_t y) {
|
||||||
|
int lo,hi;
|
||||||
|
asm volatile("smull\t%0, %1, %2, %3"
|
||||||
|
: "=&r"(lo),"=&r"(hi)
|
||||||
|
: "%r"(x),"r"(y)
|
||||||
|
: "cc");
|
||||||
|
return(hi);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline int32_t MULT31(int32_t x, int32_t y) {
|
||||||
|
return MULT32(x,y)<<1;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline int32_t MULT31_SHIFT15(int32_t x, int32_t y) {
|
||||||
|
int lo,hi;
|
||||||
|
asm volatile("smull %0, %1, %2, %3\n\t"
|
||||||
|
"movs %0, %0, lsr #15\n\t"
|
||||||
|
"adc %1, %0, %1, lsl #17\n\t"
|
||||||
|
: "=&r"(lo),"=&r"(hi)
|
||||||
|
: "%r"(x),"r"(y)
|
||||||
|
: "cc");
|
||||||
|
return(hi);
|
||||||
|
}
|
||||||
|
|
||||||
|
#define MB() asm volatile ("" : : : "memory")
|
||||||
|
|
||||||
|
#define XPROD32(a, b, t, v, x, y) \
|
||||||
|
{ \
|
||||||
|
long l; \
|
||||||
|
asm( "smull %0, %1, %4, %6\n\t" \
|
||||||
|
"smlal %0, %1, %5, %7\n\t" \
|
||||||
|
"rsb %3, %4, #0\n\t" \
|
||||||
|
"smull %0, %2, %5, %6\n\t" \
|
||||||
|
"smlal %0, %2, %3, %7" \
|
||||||
|
: "=&r" (l), "=&r" (x), "=&r" (y), "=r" ((a)) \
|
||||||
|
: "3" ((a)), "r" ((b)), "r" ((t)), "r" ((v)) \
|
||||||
|
: "cc" ); \
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void XPROD31(int32_t a, int32_t b,
|
||||||
|
int32_t t, int32_t v,
|
||||||
|
int32_t *x, int32_t *y)
|
||||||
|
{
|
||||||
|
int x1, y1, l;
|
||||||
|
asm( "smull %0, %1, %4, %6\n\t"
|
||||||
|
"smlal %0, %1, %5, %7\n\t"
|
||||||
|
"rsb %3, %4, #0\n\t"
|
||||||
|
"smull %0, %2, %5, %6\n\t"
|
||||||
|
"smlal %0, %2, %3, %7"
|
||||||
|
: "=&r" (l), "=&r" (x1), "=&r" (y1), "=r" (a)
|
||||||
|
: "3" (a), "r" (b), "r" (t), "r" (v)
|
||||||
|
: "cc" );
|
||||||
|
*x = x1 << 1;
|
||||||
|
MB();
|
||||||
|
*y = y1 << 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void XNPROD31(int32_t a, int32_t b,
|
||||||
|
int32_t t, int32_t v,
|
||||||
|
int32_t *x, int32_t *y)
|
||||||
|
{
|
||||||
|
int x1, y1, l;
|
||||||
|
asm( "rsb %2, %4, #0\n\t"
|
||||||
|
"smull %0, %1, %3, %5\n\t"
|
||||||
|
"smlal %0, %1, %2, %6\n\t"
|
||||||
|
"smull %0, %2, %4, %5\n\t"
|
||||||
|
"smlal %0, %2, %3, %6"
|
||||||
|
: "=&r" (l), "=&r" (x1), "=&r" (y1)
|
||||||
|
: "r" (a), "r" (b), "r" (t), "r" (v)
|
||||||
|
: "cc" );
|
||||||
|
*x = x1 << 1;
|
||||||
|
MB();
|
||||||
|
*y = y1 << 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifndef _V_VECT_OPS
|
||||||
|
#define _V_VECT_OPS
|
||||||
|
|
||||||
|
/* asm versions of vector operations for block.c, window.c */
|
||||||
|
static inline
|
||||||
|
void vect_add(int32_t *x, int32_t *y, int n)
|
||||||
|
{
|
||||||
|
while (n>=4) {
|
||||||
|
asm volatile ("ldmia %[x], {r0, r1, r2, r3};"
|
||||||
|
"ldmia %[y]!, {r4, r5, r6, r7};"
|
||||||
|
"add r0, r0, r4;"
|
||||||
|
"add r1, r1, r5;"
|
||||||
|
"add r2, r2, r6;"
|
||||||
|
"add r3, r3, r7;"
|
||||||
|
"stmia %[x]!, {r0, r1, r2, r3};"
|
||||||
|
: [x] "+r" (x), [y] "+r" (y)
|
||||||
|
: : "r0", "r1", "r2", "r3",
|
||||||
|
"r4", "r5", "r6", "r7",
|
||||||
|
"memory");
|
||||||
|
n -= 4;
|
||||||
|
}
|
||||||
|
/* add final elements */
|
||||||
|
while (n>0) {
|
||||||
|
*x++ += *y++;
|
||||||
|
n--;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline
|
||||||
|
void vect_copy(int32_t *x, int32_t *y, int n)
|
||||||
|
{
|
||||||
|
while (n>=4) {
|
||||||
|
asm volatile ("ldmia %[y]!, {r0, r1, r2, r3};"
|
||||||
|
"stmia %[x]!, {r0, r1, r2, r3};"
|
||||||
|
: [x] "+r" (x), [y] "+r" (y)
|
||||||
|
: : "r0", "r1", "r2", "r3",
|
||||||
|
"memory");
|
||||||
|
n -= 4;
|
||||||
|
}
|
||||||
|
/* copy final elements */
|
||||||
|
while (n>0) {
|
||||||
|
*x++ = *y++;
|
||||||
|
n--;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline
|
||||||
|
void vect_mult_fw(int32_t *data, int32_t *window, int n)
|
||||||
|
{
|
||||||
|
while (n>=4) {
|
||||||
|
asm volatile ("ldmia %[d], {r0, r1, r2, r3};"
|
||||||
|
"ldmia %[w]!, {r4, r5, r6, r7};"
|
||||||
|
"smull r8, r9, r0, r4;"
|
||||||
|
"mov r0, r9, lsl #1;"
|
||||||
|
"smull r8, r9, r1, r5;"
|
||||||
|
"mov r1, r9, lsl #1;"
|
||||||
|
"smull r8, r9, r2, r6;"
|
||||||
|
"mov r2, r9, lsl #1;"
|
||||||
|
"smull r8, r9, r3, r7;"
|
||||||
|
"mov r3, r9, lsl #1;"
|
||||||
|
"stmia %[d]!, {r0, r1, r2, r3};"
|
||||||
|
: [d] "+r" (data), [w] "+r" (window)
|
||||||
|
: : "r0", "r1", "r2", "r3",
|
||||||
|
"r4", "r5", "r6", "r7", "r8", "r9",
|
||||||
|
"memory", "cc");
|
||||||
|
n -= 4;
|
||||||
|
}
|
||||||
|
while(n>0) {
|
||||||
|
*data = MULT31(*data, *window);
|
||||||
|
data++;
|
||||||
|
window++;
|
||||||
|
n--;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline
|
||||||
|
void vect_mult_bw(int32_t *data, int32_t *window, int n)
|
||||||
|
{
|
||||||
|
while (n>=4) {
|
||||||
|
asm volatile ("ldmia %[d], {r0, r1, r2, r3};"
|
||||||
|
"ldmda %[w]!, {r4, r5, r6, r7};"
|
||||||
|
"smull r8, r9, r0, r7;"
|
||||||
|
"mov r0, r9, lsl #1;"
|
||||||
|
"smull r8, r9, r1, r6;"
|
||||||
|
"mov r1, r9, lsl #1;"
|
||||||
|
"smull r8, r9, r2, r5;"
|
||||||
|
"mov r2, r9, lsl #1;"
|
||||||
|
"smull r8, r9, r3, r4;"
|
||||||
|
"mov r3, r9, lsl #1;"
|
||||||
|
"stmia %[d]!, {r0, r1, r2, r3};"
|
||||||
|
: [d] "+r" (data), [w] "+r" (window)
|
||||||
|
: : "r0", "r1", "r2", "r3",
|
||||||
|
"r4", "r5", "r6", "r7", "r8", "r9",
|
||||||
|
"memory", "cc");
|
||||||
|
n -= 4;
|
||||||
|
}
|
||||||
|
while(n>0) {
|
||||||
|
*data = MULT31(*data, *window);
|
||||||
|
data++;
|
||||||
|
window--;
|
||||||
|
n--;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef _V_CLIP_MATH
|
||||||
|
#define _V_CLIP_MATH
|
||||||
|
|
||||||
|
static inline int32_t CLIP_TO_15(int32_t x) {
|
||||||
|
int tmp;
|
||||||
|
asm volatile("subs %1, %0, #32768\n\t"
|
||||||
|
"movpl %0, #0x7f00\n\t"
|
||||||
|
"orrpl %0, %0, #0xff\n"
|
||||||
|
"adds %1, %0, #32768\n\t"
|
||||||
|
"movmi %0, #0x8000"
|
||||||
|
: "+r"(x),"=r"(tmp)
|
||||||
|
:
|
||||||
|
: "cc");
|
||||||
|
return(x);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef _V_LSP_MATH_ASM
|
||||||
|
#define _V_LSP_MATH_ASM
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
|
@ -0,0 +1,150 @@
|
||||||
|
/**
|
||||||
|
* @file bswap.h
|
||||||
|
* byte swap.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __BSWAP_H__
|
||||||
|
#define __BSWAP_H__
|
||||||
|
|
||||||
|
#ifdef HAVE_BYTESWAP_H
|
||||||
|
#include <byteswap.h>
|
||||||
|
#else
|
||||||
|
|
||||||
|
#ifdef ROCKBOX
|
||||||
|
#include "codecs.h"
|
||||||
|
|
||||||
|
/* rockbox' optimised inline functions */
|
||||||
|
#define bswap_16(x) swap16(x)
|
||||||
|
#define bswap_32(x) swap32(x)
|
||||||
|
|
||||||
|
static inline uint64_t ByteSwap64(uint64_t x)
|
||||||
|
{
|
||||||
|
union {
|
||||||
|
uint64_t ll;
|
||||||
|
struct {
|
||||||
|
uint32_t l,h;
|
||||||
|
} l;
|
||||||
|
} r;
|
||||||
|
r.l.l = bswap_32 (x);
|
||||||
|
r.l.h = bswap_32 (x>>32);
|
||||||
|
return r.ll;
|
||||||
|
}
|
||||||
|
#define bswap_64(x) ByteSwap64(x)
|
||||||
|
|
||||||
|
#elif defined(ARCH_X86)
|
||||||
|
static inline unsigned short ByteSwap16(unsigned short x)
|
||||||
|
{
|
||||||
|
__asm("xchgb %b0,%h0" :
|
||||||
|
"=q" (x) :
|
||||||
|
"0" (x));
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
#define bswap_16(x) ByteSwap16(x)
|
||||||
|
|
||||||
|
static inline unsigned int ByteSwap32(unsigned int x)
|
||||||
|
{
|
||||||
|
#if __CPU__ > 386
|
||||||
|
__asm("bswap %0":
|
||||||
|
"=r" (x) :
|
||||||
|
#else
|
||||||
|
__asm("xchgb %b0,%h0\n"
|
||||||
|
" rorl $16,%0\n"
|
||||||
|
" xchgb %b0,%h0":
|
||||||
|
"=q" (x) :
|
||||||
|
#endif
|
||||||
|
"0" (x));
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
#define bswap_32(x) ByteSwap32(x)
|
||||||
|
|
||||||
|
static inline unsigned long long int ByteSwap64(unsigned long long int x)
|
||||||
|
{
|
||||||
|
register union { __extension__ uint64_t __ll;
|
||||||
|
uint32_t __l[2]; } __x;
|
||||||
|
asm("xchgl %0,%1":
|
||||||
|
"=r"(__x.__l[0]),"=r"(__x.__l[1]):
|
||||||
|
"0"(bswap_32((unsigned long)x)),"1"(bswap_32((unsigned long)(x>>32))));
|
||||||
|
return __x.__ll;
|
||||||
|
}
|
||||||
|
#define bswap_64(x) ByteSwap64(x)
|
||||||
|
|
||||||
|
#elif defined(ARCH_SH4)
|
||||||
|
|
||||||
|
static inline uint16_t ByteSwap16(uint16_t x) {
|
||||||
|
__asm__("swap.b %0,%0":"=r"(x):"0"(x));
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline uint32_t ByteSwap32(uint32_t x) {
|
||||||
|
__asm__(
|
||||||
|
"swap.b %0,%0\n"
|
||||||
|
"swap.w %0,%0\n"
|
||||||
|
"swap.b %0,%0\n"
|
||||||
|
:"=r"(x):"0"(x));
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define bswap_16(x) ByteSwap16(x)
|
||||||
|
#define bswap_32(x) ByteSwap32(x)
|
||||||
|
|
||||||
|
static inline uint64_t ByteSwap64(uint64_t x)
|
||||||
|
{
|
||||||
|
union {
|
||||||
|
uint64_t ll;
|
||||||
|
struct {
|
||||||
|
uint32_t l,h;
|
||||||
|
} l;
|
||||||
|
} r;
|
||||||
|
r.l.l = bswap_32 (x);
|
||||||
|
r.l.h = bswap_32 (x>>32);
|
||||||
|
return r.ll;
|
||||||
|
}
|
||||||
|
#define bswap_64(x) ByteSwap64(x)
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
#define bswap_16(x) (((x) & 0x00ff) << 8 | ((x) & 0xff00) >> 8)
|
||||||
|
|
||||||
|
|
||||||
|
// code from bits/byteswap.h (C) 1997, 1998 Free Software Foundation, Inc.
|
||||||
|
#define bswap_32(x) \
|
||||||
|
((((x) & 0xff000000) >> 24) | (((x) & 0x00ff0000) >> 8) | \
|
||||||
|
(((x) & 0x0000ff00) << 8) | (((x) & 0x000000ff) << 24))
|
||||||
|
|
||||||
|
static inline uint64_t ByteSwap64(uint64_t x)
|
||||||
|
{
|
||||||
|
union {
|
||||||
|
uint64_t ll;
|
||||||
|
uint32_t l[2];
|
||||||
|
} w, r;
|
||||||
|
w.ll = x;
|
||||||
|
r.l[0] = bswap_32 (w.l[1]);
|
||||||
|
r.l[1] = bswap_32 (w.l[0]);
|
||||||
|
return r.ll;
|
||||||
|
}
|
||||||
|
#define bswap_64(x) ByteSwap64(x)
|
||||||
|
|
||||||
|
#endif /* !ARCH_X86 */
|
||||||
|
|
||||||
|
#endif /* !HAVE_BYTESWAP_H */
|
||||||
|
|
||||||
|
// be2me ... BigEndian to MachineEndian
|
||||||
|
// le2me ... LittleEndian to MachineEndian
|
||||||
|
|
||||||
|
#ifdef WORDS_BIGENDIAN
|
||||||
|
#define be2me_16(x) (x)
|
||||||
|
#define be2me_32(x) (x)
|
||||||
|
#define be2me_64(x) (x)
|
||||||
|
#define le2me_16(x) bswap_16(x)
|
||||||
|
#define le2me_32(x) bswap_32(x)
|
||||||
|
#define le2me_64(x) bswap_64(x)
|
||||||
|
#else
|
||||||
|
#define be2me_16(x) bswap_16(x)
|
||||||
|
#define be2me_32(x) bswap_32(x)
|
||||||
|
#define be2me_64(x) bswap_64(x)
|
||||||
|
#define le2me_16(x) (x)
|
||||||
|
#define le2me_32(x) (x)
|
||||||
|
#define le2me_64(x) (x)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* __BSWAP_H__ */
|
|
@ -0,0 +1,79 @@
|
||||||
|
/***************************************************************************
|
||||||
|
* __________ __ ___.
|
||||||
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
||||||
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
||||||
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||||
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||||
|
* \/ \/ \/ \/ \/
|
||||||
|
* $Id: codeclib.h 19704 2009-01-07 09:53:46Z zagor $
|
||||||
|
*
|
||||||
|
* Copyright (C) 2005 Dave Chapman
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU General Public License
|
||||||
|
* as published by the Free Software Foundation; either version 2
|
||||||
|
* of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
||||||
|
* KIND, either express or implied.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#ifndef __CODECLIB_H__
|
||||||
|
#define __CODECLIB_H__
|
||||||
|
#include "ffmpeg_config.h"
|
||||||
|
// #include "codecs.h"
|
||||||
|
// #include <sys/types.h>
|
||||||
|
|
||||||
|
extern struct codec_api *ci;
|
||||||
|
extern size_t mem_ptr;
|
||||||
|
extern size_t bufsize;
|
||||||
|
extern unsigned char* mp3buf; /* The actual MP3 buffer from Rockbox */
|
||||||
|
extern unsigned char* mallocbuf; /* The free space after the codec in the codec buffer */
|
||||||
|
extern unsigned char* filebuf; /* The rest of the MP3 buffer */
|
||||||
|
|
||||||
|
/* Standard library functions that are used by the codecs follow here */
|
||||||
|
|
||||||
|
/* Get these functions 'out of the way' of the standard functions. Not doing
|
||||||
|
* so confuses the cygwin linker, and maybe others. These functions need to
|
||||||
|
* be implemented elsewhere */
|
||||||
|
#define malloc(x) codec_malloc(x)
|
||||||
|
#define calloc(x,y) codec_calloc(x,y)
|
||||||
|
#define realloc(x,y) codec_realloc(x,y)
|
||||||
|
#define free(x) codec_free(x)
|
||||||
|
#define alloca(x) __builtin_alloca(x)
|
||||||
|
|
||||||
|
void* codec_malloc(size_t size);
|
||||||
|
void* codec_calloc(size_t nmemb, size_t size);
|
||||||
|
void* codec_realloc(void* ptr, size_t size);
|
||||||
|
void codec_free(void* ptr);
|
||||||
|
|
||||||
|
void *memcpy(void *dest, const void *src, size_t n);
|
||||||
|
void *memset(void *s, int c, size_t n);
|
||||||
|
int memcmp(const void *s1, const void *s2, size_t n);
|
||||||
|
void *memmove(void *s1, const void *s2, size_t n);
|
||||||
|
|
||||||
|
size_t strlen(const char *s);
|
||||||
|
char *strcpy(char *dest, const char *src);
|
||||||
|
char *strcat(char *dest, const char *src);
|
||||||
|
int strcmp(const char *, const char *);
|
||||||
|
|
||||||
|
void qsort(void *base, size_t nmemb, size_t size, int(*compar)(const void *, const void *));
|
||||||
|
|
||||||
|
#define abs(x) ((x)>0?(x):-(x))
|
||||||
|
#define labs(x) abs(x)
|
||||||
|
|
||||||
|
/*MDCT library functions*/
|
||||||
|
|
||||||
|
extern void mdct_backward(int n, int32_t *in, int32_t *out);
|
||||||
|
|
||||||
|
#if defined(CPU_ARM) && (ARM_ARCH == 4)
|
||||||
|
/* optimised unsigned integer division for ARMv4, in IRAM */
|
||||||
|
unsigned udiv32_arm(unsigned a, unsigned b);
|
||||||
|
#define UDIV32(a, b) udiv32_arm(a, b)
|
||||||
|
#else
|
||||||
|
/* default */
|
||||||
|
#define UDIV32(a, b) (a / b)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
|
@ -0,0 +1,23 @@
|
||||||
|
/* Automatically generated by configure - do not modify */
|
||||||
|
#ifndef _FFMPEG_CONFIG_H
|
||||||
|
#define _FFMPEG_CONFIG_H
|
||||||
|
// #include "codecs.h"
|
||||||
|
|
||||||
|
#ifdef CPU_ARM
|
||||||
|
#define CONFIG_ALIGN 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef ROCKBOX_BIG_ENDIAN
|
||||||
|
#define WORDS_BIGENDIAN
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <rtthread.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
|
#define inline __inline
|
||||||
|
typedef unsigned long long uint64_t;
|
||||||
|
|
||||||
|
#define DEBUGF(fmt, ...)
|
||||||
|
|
||||||
|
#endif
|
|
@ -0,0 +1,18 @@
|
||||||
|
# __________ __ ___.
|
||||||
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
||||||
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
||||||
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||||
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||||
|
# \/ \/ \/ \/ \/
|
||||||
|
# $Id: libwma.make 20151 2009-03-01 09:04:15Z amiconn $
|
||||||
|
#
|
||||||
|
|
||||||
|
# libwma
|
||||||
|
WMALIB := $(CODECDIR)/libwma.a
|
||||||
|
WMALIB_SRC := $(call preprocess, $(APPSDIR)/codecs/libwma/SOURCES)
|
||||||
|
WMALIB_OBJ := $(call c2obj, $(WMALIB_SRC))
|
||||||
|
OTHER_SRC += $(WMALIB_SRC)
|
||||||
|
|
||||||
|
$(WMALIB): $(WMALIB_OBJ)
|
||||||
|
$(SILENT)$(shell rm -f $@)
|
||||||
|
$(call PRINTS,AR $(@F))$(AR) rcs $@ $^ >/dev/null
|
|
@ -0,0 +1,518 @@
|
||||||
|
/********************************************************************
|
||||||
|
* *
|
||||||
|
* THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE. *
|
||||||
|
* *
|
||||||
|
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
|
||||||
|
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
|
||||||
|
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
|
||||||
|
* *
|
||||||
|
* THE OggVorbis 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2002 *
|
||||||
|
* BY THE Xiph.Org FOUNDATION http://www.xiph.org/ *
|
||||||
|
* *
|
||||||
|
********************************************************************
|
||||||
|
|
||||||
|
function: normalized modified discrete cosine transform
|
||||||
|
power of two length transform only [64 <= n ]
|
||||||
|
|
||||||
|
|
||||||
|
Original algorithm adapted long ago from _The use of multirate filter
|
||||||
|
banks for coding of high quality digital audio_, by T. Sporer,
|
||||||
|
K. Brandenburg and B. Edler, collection of the European Signal
|
||||||
|
Processing Conference (EUSIPCO), Amsterdam, June 1992, Vol.1, pp
|
||||||
|
211-214
|
||||||
|
|
||||||
|
The below code implements an algorithm that no longer looks much like
|
||||||
|
that presented in the paper, but the basic structure remains if you
|
||||||
|
dig deep enough to see it.
|
||||||
|
|
||||||
|
This module DOES NOT INCLUDE code to generate/apply the window
|
||||||
|
function. Everybody has their own weird favorite including me... I
|
||||||
|
happen to like the properties of y=sin(.5PI*sin^2(x)), but others may
|
||||||
|
vehemently disagree.
|
||||||
|
|
||||||
|
********************************************************************/
|
||||||
|
|
||||||
|
/*Tremor IMDCT adapted for use with libwmai*/
|
||||||
|
|
||||||
|
|
||||||
|
#include "mdct2.h"
|
||||||
|
#include "mdct_lookup.h"
|
||||||
|
#include "codeclib.h"
|
||||||
|
#include "asm_arm.h"
|
||||||
|
|
||||||
|
#if defined(CPU_ARM) && CONFIG_CPU != S3C2440
|
||||||
|
/* C code is faster on S3C2440 */
|
||||||
|
|
||||||
|
extern void mdct_butterfly_32(int32_t *x);
|
||||||
|
extern void mdct_butterfly_generic_loop(int32_t *x1, int32_t *x2,
|
||||||
|
const int32_t *T0, int step,
|
||||||
|
const int32_t *Ttop);
|
||||||
|
|
||||||
|
static inline void mdct_butterfly_generic(int32_t *x,int points, int step){
|
||||||
|
mdct_butterfly_generic_loop(x + points, x + (points>>1), sincos_lookup0, step, sincos_lookup0+1024);
|
||||||
|
}
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
/* 8 point butterfly (in place) */
|
||||||
|
static inline void mdct_butterfly_8(int32_t *x){
|
||||||
|
register int32_t r0 = x[4] + x[0];
|
||||||
|
register int32_t r1 = x[4] - x[0];
|
||||||
|
register int32_t r2 = x[5] + x[1];
|
||||||
|
register int32_t r3 = x[5] - x[1];
|
||||||
|
register int32_t r4 = x[6] + x[2];
|
||||||
|
register int32_t r5 = x[6] - x[2];
|
||||||
|
register int32_t r6 = x[7] + x[3];
|
||||||
|
register int32_t r7 = x[7] - x[3];
|
||||||
|
|
||||||
|
x[0] = r5 + r3;
|
||||||
|
x[1] = r7 - r1;
|
||||||
|
x[2] = r5 - r3;
|
||||||
|
x[3] = r7 + r1;
|
||||||
|
x[4] = r4 - r0;
|
||||||
|
x[5] = r6 - r2;
|
||||||
|
x[6] = r4 + r0;
|
||||||
|
x[7] = r6 + r2;
|
||||||
|
MB();
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 16 point butterfly (in place, 4 register) */
|
||||||
|
static inline void mdct_butterfly_16(int32_t *x){
|
||||||
|
|
||||||
|
register int32_t r0, r1;
|
||||||
|
|
||||||
|
r0 = x[ 0] - x[ 8]; x[ 8] += x[ 0];
|
||||||
|
r1 = x[ 1] - x[ 9]; x[ 9] += x[ 1];
|
||||||
|
x[ 0] = MULT31((r0 + r1) , cPI2_8);
|
||||||
|
x[ 1] = MULT31((r1 - r0) , cPI2_8);
|
||||||
|
MB();
|
||||||
|
|
||||||
|
r0 = x[10] - x[ 2]; x[10] += x[ 2];
|
||||||
|
r1 = x[ 3] - x[11]; x[11] += x[ 3];
|
||||||
|
x[ 2] = r1; x[ 3] = r0;
|
||||||
|
MB();
|
||||||
|
|
||||||
|
r0 = x[12] - x[ 4]; x[12] += x[ 4];
|
||||||
|
r1 = x[13] - x[ 5]; x[13] += x[ 5];
|
||||||
|
x[ 4] = MULT31((r0 - r1) , cPI2_8);
|
||||||
|
x[ 5] = MULT31((r0 + r1) , cPI2_8);
|
||||||
|
MB();
|
||||||
|
|
||||||
|
r0 = x[14] - x[ 6]; x[14] += x[ 6];
|
||||||
|
r1 = x[15] - x[ 7]; x[15] += x[ 7];
|
||||||
|
x[ 6] = r0; x[ 7] = r1;
|
||||||
|
MB();
|
||||||
|
|
||||||
|
mdct_butterfly_8(x);
|
||||||
|
mdct_butterfly_8(x+8);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 32 point butterfly (in place, 4 register) */
|
||||||
|
static inline void mdct_butterfly_32(int32_t *x){
|
||||||
|
|
||||||
|
register int32_t r0, r1;
|
||||||
|
|
||||||
|
r0 = x[30] - x[14]; x[30] += x[14];
|
||||||
|
r1 = x[31] - x[15]; x[31] += x[15];
|
||||||
|
x[14] = r0; x[15] = r1;
|
||||||
|
MB();
|
||||||
|
|
||||||
|
r0 = x[28] - x[12]; x[28] += x[12];
|
||||||
|
r1 = x[29] - x[13]; x[29] += x[13];
|
||||||
|
XNPROD31( r0, r1, cPI1_8, cPI3_8, &x[12], &x[13] );
|
||||||
|
MB();
|
||||||
|
|
||||||
|
r0 = x[26] - x[10]; x[26] += x[10];
|
||||||
|
r1 = x[27] - x[11]; x[27] += x[11];
|
||||||
|
x[10] = MULT31((r0 - r1) , cPI2_8);
|
||||||
|
x[11] = MULT31((r0 + r1) , cPI2_8);
|
||||||
|
MB();
|
||||||
|
|
||||||
|
r0 = x[24] - x[ 8]; x[24] += x[ 8];
|
||||||
|
r1 = x[25] - x[ 9]; x[25] += x[ 9];
|
||||||
|
XNPROD31( r0, r1, cPI3_8, cPI1_8, &x[ 8], &x[ 9] );
|
||||||
|
MB();
|
||||||
|
|
||||||
|
r0 = x[22] - x[ 6]; x[22] += x[ 6];
|
||||||
|
r1 = x[ 7] - x[23]; x[23] += x[ 7];
|
||||||
|
x[ 6] = r1; x[ 7] = r0;
|
||||||
|
MB();
|
||||||
|
|
||||||
|
r0 = x[ 4] - x[20]; x[20] += x[ 4];
|
||||||
|
r1 = x[ 5] - x[21]; x[21] += x[ 5];
|
||||||
|
XPROD31 ( r0, r1, cPI3_8, cPI1_8, &x[ 4], &x[ 5] );
|
||||||
|
MB();
|
||||||
|
|
||||||
|
r0 = x[ 2] - x[18]; x[18] += x[ 2];
|
||||||
|
r1 = x[ 3] - x[19]; x[19] += x[ 3];
|
||||||
|
x[ 2] = MULT31((r1 + r0) , cPI2_8);
|
||||||
|
x[ 3] = MULT31((r1 - r0) , cPI2_8);
|
||||||
|
MB();
|
||||||
|
|
||||||
|
r0 = x[ 0] - x[16]; x[16] += x[ 0];
|
||||||
|
r1 = x[ 1] - x[17]; x[17] += x[ 1];
|
||||||
|
XPROD31 ( r0, r1, cPI1_8, cPI3_8, &x[ 0], &x[ 1] );
|
||||||
|
MB();
|
||||||
|
|
||||||
|
mdct_butterfly_16(x);
|
||||||
|
mdct_butterfly_16(x+16);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* N/stage point generic N stage butterfly (in place, 4 register) */
|
||||||
|
void mdct_butterfly_generic(int32_t *x,int points, int step){
|
||||||
|
const int32_t *T = sincos_lookup0;
|
||||||
|
int32_t *x1 = x + points - 8;
|
||||||
|
int32_t *x2 = x + (points>>1) - 8;
|
||||||
|
register int32_t r0;
|
||||||
|
register int32_t r1;
|
||||||
|
register int32_t r2;
|
||||||
|
register int32_t r3;
|
||||||
|
|
||||||
|
do{
|
||||||
|
r0 = x1[6] - x2[6]; x1[6] += x2[6];
|
||||||
|
r1 = x2[7] - x1[7]; x1[7] += x2[7];
|
||||||
|
r2 = x1[4] - x2[4]; x1[4] += x2[4];
|
||||||
|
r3 = x2[5] - x1[5]; x1[5] += x2[5];
|
||||||
|
XPROD31( r1, r0, T[0], T[1], &x2[6], &x2[7] ); T+=step;
|
||||||
|
XPROD31( r3, r2, T[0], T[1], &x2[4], &x2[5] ); T+=step;
|
||||||
|
|
||||||
|
r0 = x1[2] - x2[2]; x1[2] += x2[2];
|
||||||
|
r1 = x2[3] - x1[3]; x1[3] += x2[3];
|
||||||
|
r2 = x1[0] - x2[0]; x1[0] += x2[0];
|
||||||
|
r3 = x2[1] - x1[1]; x1[1] += x2[1];
|
||||||
|
XPROD31( r1, r0, T[0], T[1], &x2[2], &x2[3] ); T+=step;
|
||||||
|
XPROD31( r3, r2, T[0], T[1], &x2[0], &x2[1] ); T+=step;
|
||||||
|
|
||||||
|
x1-=8; x2-=8;
|
||||||
|
}while(T<sincos_lookup0+1024);
|
||||||
|
do{
|
||||||
|
r0 = x1[6] - x2[6]; x1[6] += x2[6];
|
||||||
|
r1 = x1[7] - x2[7]; x1[7] += x2[7];
|
||||||
|
r2 = x1[4] - x2[4]; x1[4] += x2[4];
|
||||||
|
r3 = x1[5] - x2[5]; x1[5] += x2[5];
|
||||||
|
XNPROD31( r0, r1, T[0], T[1], &x2[6], &x2[7] ); T-=step;
|
||||||
|
XNPROD31( r2, r3, T[0], T[1], &x2[4], &x2[5] ); T-=step;
|
||||||
|
|
||||||
|
r0 = x1[2] - x2[2]; x1[2] += x2[2];
|
||||||
|
r1 = x1[3] - x2[3]; x1[3] += x2[3];
|
||||||
|
r2 = x1[0] - x2[0]; x1[0] += x2[0];
|
||||||
|
r3 = x1[1] - x2[1]; x1[1] += x2[1];
|
||||||
|
XNPROD31( r0, r1, T[0], T[1], &x2[2], &x2[3] ); T-=step;
|
||||||
|
XNPROD31( r2, r3, T[0], T[1], &x2[0], &x2[1] ); T-=step;
|
||||||
|
|
||||||
|
x1-=8; x2-=8;
|
||||||
|
}while(T>sincos_lookup0);
|
||||||
|
do{
|
||||||
|
r0 = x2[6] - x1[6]; x1[6] += x2[6];
|
||||||
|
r1 = x2[7] - x1[7]; x1[7] += x2[7];
|
||||||
|
r2 = x2[4] - x1[4]; x1[4] += x2[4];
|
||||||
|
r3 = x2[5] - x1[5]; x1[5] += x2[5];
|
||||||
|
XPROD31( r0, r1, T[0], T[1], &x2[6], &x2[7] ); T+=step;
|
||||||
|
XPROD31( r2, r3, T[0], T[1], &x2[4], &x2[5] ); T+=step;
|
||||||
|
|
||||||
|
r0 = x2[2] - x1[2]; x1[2] += x2[2];
|
||||||
|
r1 = x2[3] - x1[3]; x1[3] += x2[3];
|
||||||
|
r2 = x2[0] - x1[0]; x1[0] += x2[0];
|
||||||
|
r3 = x2[1] - x1[1]; x1[1] += x2[1];
|
||||||
|
XPROD31( r0, r1, T[0], T[1], &x2[2], &x2[3] ); T+=step;
|
||||||
|
XPROD31( r2, r3, T[0], T[1], &x2[0], &x2[1] ); T+=step;
|
||||||
|
|
||||||
|
x1-=8; x2-=8;
|
||||||
|
}while(T<sincos_lookup0+1024);
|
||||||
|
do{
|
||||||
|
r0 = x1[6] - x2[6]; x1[6] += x2[6];
|
||||||
|
r1 = x2[7] - x1[7]; x1[7] += x2[7];
|
||||||
|
r2 = x1[4] - x2[4]; x1[4] += x2[4];
|
||||||
|
r3 = x2[5] - x1[5]; x1[5] += x2[5];
|
||||||
|
XNPROD31( r1, r0, T[0], T[1], &x2[6], &x2[7] ); T-=step;
|
||||||
|
XNPROD31( r3, r2, T[0], T[1], &x2[4], &x2[5] ); T-=step;
|
||||||
|
|
||||||
|
r0 = x1[2] - x2[2]; x1[2] += x2[2];
|
||||||
|
r1 = x2[3] - x1[3]; x1[3] += x2[3];
|
||||||
|
r2 = x1[0] - x2[0]; x1[0] += x2[0];
|
||||||
|
r3 = x2[1] - x1[1]; x1[1] += x2[1];
|
||||||
|
XNPROD31( r1, r0, T[0], T[1], &x2[2], &x2[3] ); T-=step;
|
||||||
|
XNPROD31( r3, r2, T[0], T[1], &x2[0], &x2[1] ); T-=step;
|
||||||
|
|
||||||
|
x1-=8; x2-=8;
|
||||||
|
}while(T>sincos_lookup0);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* CPU_ARM */
|
||||||
|
|
||||||
|
static inline void mdct_butterflies(int32_t *x,int points,int shift) {
|
||||||
|
|
||||||
|
int stages=8-shift;
|
||||||
|
int i,j;
|
||||||
|
|
||||||
|
for(i=0;--stages>0;i++){
|
||||||
|
for(j=0;j<(1<<i);j++)
|
||||||
|
mdct_butterfly_generic(x+(points>>i)*j,points>>i,4<<(i+shift));
|
||||||
|
}
|
||||||
|
|
||||||
|
for(j=0;j<points;j+=32)
|
||||||
|
mdct_butterfly_32(x+j);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static const unsigned char bitrev[16]=
|
||||||
|
{0,8,4,12,2,10,6,14,1,9,5,13,3,11,7,15};
|
||||||
|
|
||||||
|
static inline int bitrev12(int x){
|
||||||
|
return bitrev[x>>8]|(bitrev[(x&0x0f0)>>4]<<4)|(((int)bitrev[x&0x00f])<<8);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void mdct_bitreverse(int32_t *x,int n,int step,int shift) {
|
||||||
|
|
||||||
|
int bit = 0;
|
||||||
|
int32_t *w0 = x;
|
||||||
|
int32_t *w1 = x = w0+(n>>1);
|
||||||
|
const int32_t *T = (step>=4)?(sincos_lookup0+(step>>1)):sincos_lookup1;
|
||||||
|
const int32_t *Ttop = T+1024;
|
||||||
|
register int32_t r2;
|
||||||
|
|
||||||
|
do{
|
||||||
|
register int32_t r3 = bitrev12(bit++);
|
||||||
|
int32_t *x0 = x + ((r3 ^ 0xfff)>>shift) -1;
|
||||||
|
int32_t *x1 = x + (r3>>shift);
|
||||||
|
|
||||||
|
register int32_t r0 = x0[0] + x1[0];
|
||||||
|
register int32_t r1 = x1[1] - x0[1];
|
||||||
|
|
||||||
|
XPROD32( r0, r1, T[1], T[0], r2, r3 ); T+=step;
|
||||||
|
|
||||||
|
w1 -= 4;
|
||||||
|
|
||||||
|
r0 = (x0[1] + x1[1])>>1;
|
||||||
|
r1 = (x0[0] - x1[0])>>1;
|
||||||
|
w0[0] = r0 + r2;
|
||||||
|
w0[1] = r1 + r3;
|
||||||
|
w1[2] = r0 - r2;
|
||||||
|
w1[3] = r3 - r1;
|
||||||
|
|
||||||
|
r3 = bitrev12(bit++);
|
||||||
|
x0 = x + ((r3 ^ 0xfff)>>shift) -1;
|
||||||
|
x1 = x + (r3>>shift);
|
||||||
|
|
||||||
|
r0 = x0[0] + x1[0];
|
||||||
|
r1 = x1[1] - x0[1];
|
||||||
|
|
||||||
|
XPROD32( r0, r1, T[1], T[0], r2, r3 ); T+=step;
|
||||||
|
|
||||||
|
r0 = (x0[1] + x1[1])>>1;
|
||||||
|
r1 = (x0[0] - x1[0])>>1;
|
||||||
|
w0[2] = r0 + r2;
|
||||||
|
w0[3] = r1 + r3;
|
||||||
|
w1[0] = r0 - r2;
|
||||||
|
w1[1] = r3 - r1;
|
||||||
|
|
||||||
|
w0 += 4;
|
||||||
|
}while(T<Ttop);
|
||||||
|
|
||||||
|
do{
|
||||||
|
register int32_t r3 = bitrev12(bit++);
|
||||||
|
int32_t *x0 = x + ((r3 ^ 0xfff)>>shift) -1;
|
||||||
|
int32_t *x1 = x + (r3>>shift);
|
||||||
|
|
||||||
|
register int32_t r0 = x0[0] + x1[0];
|
||||||
|
register int32_t r1 = x1[1] - x0[1];
|
||||||
|
|
||||||
|
T-=step; XPROD32( r0, r1, T[0], T[1], r2, r3 );
|
||||||
|
|
||||||
|
w1 -= 4;
|
||||||
|
|
||||||
|
r0 = (x0[1] + x1[1])>>1;
|
||||||
|
r1 = (x0[0] - x1[0])>>1;
|
||||||
|
w0[0] = r0 + r2;
|
||||||
|
w0[1] = r1 + r3;
|
||||||
|
w1[2] = r0 - r2;
|
||||||
|
w1[3] = r3 - r1;
|
||||||
|
|
||||||
|
r3 = bitrev12(bit++);
|
||||||
|
x0 = x + ((r3 ^ 0xfff)>>shift) -1;
|
||||||
|
x1 = x + (r3>>shift);
|
||||||
|
|
||||||
|
r0 = x0[0] + x1[0];
|
||||||
|
r1 = x1[1] - x0[1];
|
||||||
|
|
||||||
|
T-=step; XPROD32( r0, r1, T[0], T[1], r2, r3 );
|
||||||
|
|
||||||
|
r0 = (x0[1] + x1[1])>>1;
|
||||||
|
r1 = (x0[0] - x1[0])>>1;
|
||||||
|
w0[2] = r0 + r2;
|
||||||
|
w0[3] = r1 + r3;
|
||||||
|
w1[0] = r0 - r2;
|
||||||
|
w1[1] = r3 - r1;
|
||||||
|
|
||||||
|
w0 += 4;
|
||||||
|
}while(w0<w1);
|
||||||
|
}
|
||||||
|
|
||||||
|
void mdct_backward(int n, int32_t *in, int32_t *out) {
|
||||||
|
int n2=n>>1;
|
||||||
|
int n4=n>>2;
|
||||||
|
int32_t *iX;
|
||||||
|
int32_t *oX;
|
||||||
|
const int32_t *T;
|
||||||
|
const int32_t *V;
|
||||||
|
int shift;
|
||||||
|
int step;
|
||||||
|
for (shift=6;!(n&(1<<shift));shift++);
|
||||||
|
shift=13-shift;
|
||||||
|
step=2<<shift;
|
||||||
|
|
||||||
|
/* rotate */
|
||||||
|
|
||||||
|
iX = in+n2-7;
|
||||||
|
oX = out+n2+n4;
|
||||||
|
T = sincos_lookup0;
|
||||||
|
|
||||||
|
do{
|
||||||
|
oX-=4;
|
||||||
|
XPROD31( iX[4], iX[6], T[0], T[1], &oX[2], &oX[3] ); T+=step;
|
||||||
|
XPROD31( iX[0], iX[2], T[0], T[1], &oX[0], &oX[1] ); T+=step;
|
||||||
|
iX-=8;
|
||||||
|
}while(iX>=in+n4);
|
||||||
|
do{
|
||||||
|
oX-=4;
|
||||||
|
XPROD31( iX[4], iX[6], T[1], T[0], &oX[2], &oX[3] ); T-=step;
|
||||||
|
XPROD31( iX[0], iX[2], T[1], T[0], &oX[0], &oX[1] ); T-=step;
|
||||||
|
iX-=8;
|
||||||
|
}while(iX>=in);
|
||||||
|
|
||||||
|
iX = in+n2-8;
|
||||||
|
oX = out+n2+n4;
|
||||||
|
T = sincos_lookup0;
|
||||||
|
|
||||||
|
do{
|
||||||
|
T+=step; XNPROD31( iX[6], iX[4], T[0], T[1], &oX[0], &oX[1] );
|
||||||
|
T+=step; XNPROD31( iX[2], iX[0], T[0], T[1], &oX[2], &oX[3] );
|
||||||
|
iX-=8;
|
||||||
|
oX+=4;
|
||||||
|
}while(iX>=in+n4);
|
||||||
|
do{
|
||||||
|
T-=step; XNPROD31( iX[6], iX[4], T[1], T[0], &oX[0], &oX[1] );
|
||||||
|
T-=step; XNPROD31( iX[2], iX[0], T[1], T[0], &oX[2], &oX[3] );
|
||||||
|
iX-=8;
|
||||||
|
oX+=4;
|
||||||
|
}while(iX>=in);
|
||||||
|
|
||||||
|
mdct_butterflies(out+n2,n2,shift);
|
||||||
|
mdct_bitreverse(out,n,step,shift);
|
||||||
|
/* rotate + window */
|
||||||
|
|
||||||
|
step>>=2;
|
||||||
|
{
|
||||||
|
int32_t *oX1=out+n2+n4;
|
||||||
|
int32_t *oX2=out+n2+n4;
|
||||||
|
int32_t *iX =out;
|
||||||
|
|
||||||
|
switch(step) {
|
||||||
|
default: {
|
||||||
|
T=(step>=4)?(sincos_lookup0+(step>>1)):sincos_lookup1;
|
||||||
|
do{
|
||||||
|
oX1-=4;
|
||||||
|
XPROD31( iX[0], -iX[1], T[0], T[1], &oX1[3], &oX2[0] ); T+=step;
|
||||||
|
XPROD31( iX[2], -iX[3], T[0], T[1], &oX1[2], &oX2[1] ); T+=step;
|
||||||
|
XPROD31( iX[4], -iX[5], T[0], T[1], &oX1[1], &oX2[2] ); T+=step;
|
||||||
|
XPROD31( iX[6], -iX[7], T[0], T[1], &oX1[0], &oX2[3] ); T+=step;
|
||||||
|
oX2+=4;
|
||||||
|
iX+=8;
|
||||||
|
}while(iX<oX1);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
case 1: {
|
||||||
|
/* linear interpolation between table values: offset=0.5, step=1 */
|
||||||
|
register int32_t t0,t1,v0,v1;
|
||||||
|
T = sincos_lookup0;
|
||||||
|
V = sincos_lookup1;
|
||||||
|
t0 = (*T++)>>1;
|
||||||
|
t1 = (*T++)>>1;
|
||||||
|
do{
|
||||||
|
oX1-=4;
|
||||||
|
|
||||||
|
t0 += (v0 = (*V++)>>1);
|
||||||
|
t1 += (v1 = (*V++)>>1);
|
||||||
|
XPROD31( iX[0], -iX[1], t0, t1, &oX1[3], &oX2[0] );
|
||||||
|
v0 += (t0 = (*T++)>>1);
|
||||||
|
v1 += (t1 = (*T++)>>1);
|
||||||
|
XPROD31( iX[2], -iX[3], v0, v1, &oX1[2], &oX2[1] );
|
||||||
|
t0 += (v0 = (*V++)>>1);
|
||||||
|
t1 += (v1 = (*V++)>>1);
|
||||||
|
XPROD31( iX[4], -iX[5], t0, t1, &oX1[1], &oX2[2] );
|
||||||
|
v0 += (t0 = (*T++)>>1);
|
||||||
|
v1 += (t1 = (*T++)>>1);
|
||||||
|
XPROD31( iX[6], -iX[7], v0, v1, &oX1[0], &oX2[3] );
|
||||||
|
|
||||||
|
oX2+=4;
|
||||||
|
iX+=8;
|
||||||
|
}while(iX<oX1);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
case 0: {
|
||||||
|
/* linear interpolation between table values: offset=0.25, step=0.5 */
|
||||||
|
register int32_t t0,t1,v0,v1,q0,q1;
|
||||||
|
T = sincos_lookup0;
|
||||||
|
V = sincos_lookup1;
|
||||||
|
t0 = *T++;
|
||||||
|
t1 = *T++;
|
||||||
|
do{
|
||||||
|
oX1-=4;
|
||||||
|
|
||||||
|
v0 = *V++;
|
||||||
|
v1 = *V++;
|
||||||
|
t0 += (q0 = (v0-t0)>>2);
|
||||||
|
t1 += (q1 = (v1-t1)>>2);
|
||||||
|
XPROD31( iX[0], -iX[1], t0, t1, &oX1[3], &oX2[0] );
|
||||||
|
t0 = v0-q0;
|
||||||
|
t1 = v1-q1;
|
||||||
|
XPROD31( iX[2], -iX[3], t0, t1, &oX1[2], &oX2[1] );
|
||||||
|
|
||||||
|
t0 = *T++;
|
||||||
|
t1 = *T++;
|
||||||
|
v0 += (q0 = (t0-v0)>>2);
|
||||||
|
v1 += (q1 = (t1-v1)>>2);
|
||||||
|
XPROD31( iX[4], -iX[5], v0, v1, &oX1[1], &oX2[2] );
|
||||||
|
v0 = t0-q0;
|
||||||
|
v1 = t1-q1;
|
||||||
|
XPROD31( iX[6], -iX[7], v0, v1, &oX1[0], &oX2[3] );
|
||||||
|
|
||||||
|
oX2+=4;
|
||||||
|
iX+=8;
|
||||||
|
}while(iX<oX1);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
iX=out+n2+n4;
|
||||||
|
oX1=out+n4;
|
||||||
|
oX2=oX1;
|
||||||
|
|
||||||
|
do{
|
||||||
|
oX1-=4;
|
||||||
|
iX-=4;
|
||||||
|
|
||||||
|
oX2[0] = -(oX1[3] = iX[3]);
|
||||||
|
oX2[1] = -(oX1[2] = iX[2]);
|
||||||
|
oX2[2] = -(oX1[1] = iX[1]);
|
||||||
|
oX2[3] = -(oX1[0] = iX[0]);
|
||||||
|
|
||||||
|
oX2+=4;
|
||||||
|
}while(oX2<iX);
|
||||||
|
|
||||||
|
iX=out+n2+n4;
|
||||||
|
oX1=out+n2+n4;
|
||||||
|
oX2=out+n2;
|
||||||
|
|
||||||
|
do{
|
||||||
|
oX1-=4;
|
||||||
|
oX1[0]= iX[3];
|
||||||
|
oX1[1]= iX[2];
|
||||||
|
oX1[2]= iX[1];
|
||||||
|
oX1[3]= iX[0];
|
||||||
|
iX+=4;
|
||||||
|
}while(oX1>oX2);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,75 @@
|
||||||
|
/********************************************************************
|
||||||
|
* *
|
||||||
|
* THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE. *
|
||||||
|
* *
|
||||||
|
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
|
||||||
|
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
|
||||||
|
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
|
||||||
|
* *
|
||||||
|
* THE OggVorbis 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2002 *
|
||||||
|
* BY THE Xiph.Org FOUNDATION http://www.xiph.org/ *
|
||||||
|
* *
|
||||||
|
********************************************************************
|
||||||
|
|
||||||
|
function: modified discrete cosine transform prototypes
|
||||||
|
|
||||||
|
********************************************************************/
|
||||||
|
|
||||||
|
#ifndef _OGG_mdct_H_
|
||||||
|
#define _OGG_mdct_H_
|
||||||
|
|
||||||
|
#include "ffmpeg_config.h"
|
||||||
|
|
||||||
|
#ifdef _LOW_ACCURACY_
|
||||||
|
# define X(n) (((((n)>>22)+1)>>1) - ((((n)>>22)+1)>>9))
|
||||||
|
# //define LOOKUP_T const unsigned char
|
||||||
|
#else
|
||||||
|
# define X(n) (n)
|
||||||
|
# //define LOOKUP_T const ogg_int32_t
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// #include <codecs.h>
|
||||||
|
#include "asm_arm.h"
|
||||||
|
// #include "asm_mcf5249.h"
|
||||||
|
// #include "codeclib_misc.h"
|
||||||
|
|
||||||
|
#ifndef ICONST_ATTR_TREMOR_WINDOW
|
||||||
|
#define ICONST_ATTR_TREMOR_WINDOW ICONST_ATTR
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef ICODE_ATTR_TREMOR_MDCT
|
||||||
|
#define ICODE_ATTR_TREMOR_MDCT ICODE_ATTR
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef ICODE_ATTR_TREMOR_NOT_MDCT
|
||||||
|
#define ICODE_ATTR_TREMOR_NOT_MDCT ICODE_ATTR
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef _LOW_ACCURACY_
|
||||||
|
#define cPI3_8 (0x0062)
|
||||||
|
#define cPI2_8 (0x00b5)
|
||||||
|
#define cPI1_8 (0x00ed)
|
||||||
|
#else
|
||||||
|
#define cPI3_8 (0x30fbc54d)
|
||||||
|
#define cPI2_8 (0x5a82799a)
|
||||||
|
#define cPI1_8 (0x7641af3d)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
extern void mdct_backward(int n, int32_t *in, int32_t *out);
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,544 @@
|
||||||
|
/********************************************************************
|
||||||
|
* *
|
||||||
|
* THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE. *
|
||||||
|
* *
|
||||||
|
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
|
||||||
|
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
|
||||||
|
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
|
||||||
|
* *
|
||||||
|
* THE OggVorbis 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2002 *
|
||||||
|
* BY THE Xiph.Org FOUNDATION http://www.xiph.org/ *
|
||||||
|
* *
|
||||||
|
********************************************************************
|
||||||
|
|
||||||
|
function: sin,cos lookup tables
|
||||||
|
|
||||||
|
********************************************************************/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* {sin(2*i*PI/4096), cos(2*i*PI/4096)}, with i = 0 to 512 */
|
||||||
|
static const int32_t sincos_lookup0[1026] = {
|
||||||
|
X(0x00000000), X(0x7fffffff), X(0x003243f5), X(0x7ffff621),
|
||||||
|
X(0x006487e3), X(0x7fffd886), X(0x0096cbc1), X(0x7fffa72c),
|
||||||
|
X(0x00c90f88), X(0x7fff6216), X(0x00fb5330), X(0x7fff0943),
|
||||||
|
X(0x012d96b1), X(0x7ffe9cb2), X(0x015fda03), X(0x7ffe1c65),
|
||||||
|
X(0x01921d20), X(0x7ffd885a), X(0x01c45ffe), X(0x7ffce093),
|
||||||
|
X(0x01f6a297), X(0x7ffc250f), X(0x0228e4e2), X(0x7ffb55ce),
|
||||||
|
X(0x025b26d7), X(0x7ffa72d1), X(0x028d6870), X(0x7ff97c18),
|
||||||
|
X(0x02bfa9a4), X(0x7ff871a2), X(0x02f1ea6c), X(0x7ff75370),
|
||||||
|
X(0x03242abf), X(0x7ff62182), X(0x03566a96), X(0x7ff4dbd9),
|
||||||
|
X(0x0388a9ea), X(0x7ff38274), X(0x03bae8b2), X(0x7ff21553),
|
||||||
|
X(0x03ed26e6), X(0x7ff09478), X(0x041f6480), X(0x7feeffe1),
|
||||||
|
X(0x0451a177), X(0x7fed5791), X(0x0483ddc3), X(0x7feb9b85),
|
||||||
|
X(0x04b6195d), X(0x7fe9cbc0), X(0x04e8543e), X(0x7fe7e841),
|
||||||
|
X(0x051a8e5c), X(0x7fe5f108), X(0x054cc7b1), X(0x7fe3e616),
|
||||||
|
X(0x057f0035), X(0x7fe1c76b), X(0x05b137df), X(0x7fdf9508),
|
||||||
|
X(0x05e36ea9), X(0x7fdd4eec), X(0x0615a48b), X(0x7fdaf519),
|
||||||
|
X(0x0647d97c), X(0x7fd8878e), X(0x067a0d76), X(0x7fd6064c),
|
||||||
|
X(0x06ac406f), X(0x7fd37153), X(0x06de7262), X(0x7fd0c8a3),
|
||||||
|
X(0x0710a345), X(0x7fce0c3e), X(0x0742d311), X(0x7fcb3c23),
|
||||||
|
X(0x077501be), X(0x7fc85854), X(0x07a72f45), X(0x7fc560cf),
|
||||||
|
X(0x07d95b9e), X(0x7fc25596), X(0x080b86c2), X(0x7fbf36aa),
|
||||||
|
X(0x083db0a7), X(0x7fbc040a), X(0x086fd947), X(0x7fb8bdb8),
|
||||||
|
X(0x08a2009a), X(0x7fb563b3), X(0x08d42699), X(0x7fb1f5fc),
|
||||||
|
X(0x09064b3a), X(0x7fae7495), X(0x09386e78), X(0x7faadf7c),
|
||||||
|
X(0x096a9049), X(0x7fa736b4), X(0x099cb0a7), X(0x7fa37a3c),
|
||||||
|
X(0x09cecf89), X(0x7f9faa15), X(0x0a00ece8), X(0x7f9bc640),
|
||||||
|
X(0x0a3308bd), X(0x7f97cebd), X(0x0a6522fe), X(0x7f93c38c),
|
||||||
|
X(0x0a973ba5), X(0x7f8fa4b0), X(0x0ac952aa), X(0x7f8b7227),
|
||||||
|
X(0x0afb6805), X(0x7f872bf3), X(0x0b2d7baf), X(0x7f82d214),
|
||||||
|
X(0x0b5f8d9f), X(0x7f7e648c), X(0x0b919dcf), X(0x7f79e35a),
|
||||||
|
X(0x0bc3ac35), X(0x7f754e80), X(0x0bf5b8cb), X(0x7f70a5fe),
|
||||||
|
X(0x0c27c389), X(0x7f6be9d4), X(0x0c59cc68), X(0x7f671a05),
|
||||||
|
X(0x0c8bd35e), X(0x7f62368f), X(0x0cbdd865), X(0x7f5d3f75),
|
||||||
|
X(0x0cefdb76), X(0x7f5834b7), X(0x0d21dc87), X(0x7f531655),
|
||||||
|
X(0x0d53db92), X(0x7f4de451), X(0x0d85d88f), X(0x7f489eaa),
|
||||||
|
X(0x0db7d376), X(0x7f434563), X(0x0de9cc40), X(0x7f3dd87c),
|
||||||
|
X(0x0e1bc2e4), X(0x7f3857f6), X(0x0e4db75b), X(0x7f32c3d1),
|
||||||
|
X(0x0e7fa99e), X(0x7f2d1c0e), X(0x0eb199a4), X(0x7f2760af),
|
||||||
|
X(0x0ee38766), X(0x7f2191b4), X(0x0f1572dc), X(0x7f1baf1e),
|
||||||
|
X(0x0f475bff), X(0x7f15b8ee), X(0x0f7942c7), X(0x7f0faf25),
|
||||||
|
X(0x0fab272b), X(0x7f0991c4), X(0x0fdd0926), X(0x7f0360cb),
|
||||||
|
X(0x100ee8ad), X(0x7efd1c3c), X(0x1040c5bb), X(0x7ef6c418),
|
||||||
|
X(0x1072a048), X(0x7ef05860), X(0x10a4784b), X(0x7ee9d914),
|
||||||
|
X(0x10d64dbd), X(0x7ee34636), X(0x11082096), X(0x7edc9fc6),
|
||||||
|
X(0x1139f0cf), X(0x7ed5e5c6), X(0x116bbe60), X(0x7ecf1837),
|
||||||
|
X(0x119d8941), X(0x7ec8371a), X(0x11cf516a), X(0x7ec14270),
|
||||||
|
X(0x120116d5), X(0x7eba3a39), X(0x1232d979), X(0x7eb31e78),
|
||||||
|
X(0x1264994e), X(0x7eabef2c), X(0x1296564d), X(0x7ea4ac58),
|
||||||
|
X(0x12c8106f), X(0x7e9d55fc), X(0x12f9c7aa), X(0x7e95ec1a),
|
||||||
|
X(0x132b7bf9), X(0x7e8e6eb2), X(0x135d2d53), X(0x7e86ddc6),
|
||||||
|
X(0x138edbb1), X(0x7e7f3957), X(0x13c0870a), X(0x7e778166),
|
||||||
|
X(0x13f22f58), X(0x7e6fb5f4), X(0x1423d492), X(0x7e67d703),
|
||||||
|
X(0x145576b1), X(0x7e5fe493), X(0x148715ae), X(0x7e57dea7),
|
||||||
|
X(0x14b8b17f), X(0x7e4fc53e), X(0x14ea4a1f), X(0x7e47985b),
|
||||||
|
X(0x151bdf86), X(0x7e3f57ff), X(0x154d71aa), X(0x7e37042a),
|
||||||
|
X(0x157f0086), X(0x7e2e9cdf), X(0x15b08c12), X(0x7e26221f),
|
||||||
|
X(0x15e21445), X(0x7e1d93ea), X(0x16139918), X(0x7e14f242),
|
||||||
|
X(0x16451a83), X(0x7e0c3d29), X(0x1676987f), X(0x7e0374a0),
|
||||||
|
X(0x16a81305), X(0x7dfa98a8), X(0x16d98a0c), X(0x7df1a942),
|
||||||
|
X(0x170afd8d), X(0x7de8a670), X(0x173c6d80), X(0x7ddf9034),
|
||||||
|
X(0x176dd9de), X(0x7dd6668f), X(0x179f429f), X(0x7dcd2981),
|
||||||
|
X(0x17d0a7bc), X(0x7dc3d90d), X(0x1802092c), X(0x7dba7534),
|
||||||
|
X(0x183366e9), X(0x7db0fdf8), X(0x1864c0ea), X(0x7da77359),
|
||||||
|
X(0x18961728), X(0x7d9dd55a), X(0x18c7699b), X(0x7d9423fc),
|
||||||
|
X(0x18f8b83c), X(0x7d8a5f40), X(0x192a0304), X(0x7d808728),
|
||||||
|
X(0x195b49ea), X(0x7d769bb5), X(0x198c8ce7), X(0x7d6c9ce9),
|
||||||
|
X(0x19bdcbf3), X(0x7d628ac6), X(0x19ef0707), X(0x7d58654d),
|
||||||
|
X(0x1a203e1b), X(0x7d4e2c7f), X(0x1a517128), X(0x7d43e05e),
|
||||||
|
X(0x1a82a026), X(0x7d3980ec), X(0x1ab3cb0d), X(0x7d2f0e2b),
|
||||||
|
X(0x1ae4f1d6), X(0x7d24881b), X(0x1b161479), X(0x7d19eebf),
|
||||||
|
X(0x1b4732ef), X(0x7d0f4218), X(0x1b784d30), X(0x7d048228),
|
||||||
|
X(0x1ba96335), X(0x7cf9aef0), X(0x1bda74f6), X(0x7ceec873),
|
||||||
|
X(0x1c0b826a), X(0x7ce3ceb2), X(0x1c3c8b8c), X(0x7cd8c1ae),
|
||||||
|
X(0x1c6d9053), X(0x7ccda169), X(0x1c9e90b8), X(0x7cc26de5),
|
||||||
|
X(0x1ccf8cb3), X(0x7cb72724), X(0x1d00843d), X(0x7cabcd28),
|
||||||
|
X(0x1d31774d), X(0x7ca05ff1), X(0x1d6265dd), X(0x7c94df83),
|
||||||
|
X(0x1d934fe5), X(0x7c894bde), X(0x1dc4355e), X(0x7c7da505),
|
||||||
|
X(0x1df5163f), X(0x7c71eaf9), X(0x1e25f282), X(0x7c661dbc),
|
||||||
|
X(0x1e56ca1e), X(0x7c5a3d50), X(0x1e879d0d), X(0x7c4e49b7),
|
||||||
|
X(0x1eb86b46), X(0x7c4242f2), X(0x1ee934c3), X(0x7c362904),
|
||||||
|
X(0x1f19f97b), X(0x7c29fbee), X(0x1f4ab968), X(0x7c1dbbb3),
|
||||||
|
X(0x1f7b7481), X(0x7c116853), X(0x1fac2abf), X(0x7c0501d2),
|
||||||
|
X(0x1fdcdc1b), X(0x7bf88830), X(0x200d888d), X(0x7bebfb70),
|
||||||
|
X(0x203e300d), X(0x7bdf5b94), X(0x206ed295), X(0x7bd2a89e),
|
||||||
|
X(0x209f701c), X(0x7bc5e290), X(0x20d0089c), X(0x7bb9096b),
|
||||||
|
X(0x21009c0c), X(0x7bac1d31), X(0x21312a65), X(0x7b9f1de6),
|
||||||
|
X(0x2161b3a0), X(0x7b920b89), X(0x219237b5), X(0x7b84e61f),
|
||||||
|
X(0x21c2b69c), X(0x7b77ada8), X(0x21f3304f), X(0x7b6a6227),
|
||||||
|
X(0x2223a4c5), X(0x7b5d039e), X(0x225413f8), X(0x7b4f920e),
|
||||||
|
X(0x22847de0), X(0x7b420d7a), X(0x22b4e274), X(0x7b3475e5),
|
||||||
|
X(0x22e541af), X(0x7b26cb4f), X(0x23159b88), X(0x7b190dbc),
|
||||||
|
X(0x2345eff8), X(0x7b0b3d2c), X(0x23763ef7), X(0x7afd59a4),
|
||||||
|
X(0x23a6887f), X(0x7aef6323), X(0x23d6cc87), X(0x7ae159ae),
|
||||||
|
X(0x24070b08), X(0x7ad33d45), X(0x243743fa), X(0x7ac50dec),
|
||||||
|
X(0x24677758), X(0x7ab6cba4), X(0x2497a517), X(0x7aa8766f),
|
||||||
|
X(0x24c7cd33), X(0x7a9a0e50), X(0x24f7efa2), X(0x7a8b9348),
|
||||||
|
X(0x25280c5e), X(0x7a7d055b), X(0x2558235f), X(0x7a6e648a),
|
||||||
|
X(0x2588349d), X(0x7a5fb0d8), X(0x25b84012), X(0x7a50ea47),
|
||||||
|
X(0x25e845b6), X(0x7a4210d8), X(0x26184581), X(0x7a332490),
|
||||||
|
X(0x26483f6c), X(0x7a24256f), X(0x26783370), X(0x7a151378),
|
||||||
|
X(0x26a82186), X(0x7a05eead), X(0x26d809a5), X(0x79f6b711),
|
||||||
|
X(0x2707ebc7), X(0x79e76ca7), X(0x2737c7e3), X(0x79d80f6f),
|
||||||
|
X(0x27679df4), X(0x79c89f6e), X(0x27976df1), X(0x79b91ca4),
|
||||||
|
X(0x27c737d3), X(0x79a98715), X(0x27f6fb92), X(0x7999dec4),
|
||||||
|
X(0x2826b928), X(0x798a23b1), X(0x2856708d), X(0x797a55e0),
|
||||||
|
X(0x288621b9), X(0x796a7554), X(0x28b5cca5), X(0x795a820e),
|
||||||
|
X(0x28e5714b), X(0x794a7c12), X(0x29150fa1), X(0x793a6361),
|
||||||
|
X(0x2944a7a2), X(0x792a37fe), X(0x29743946), X(0x7919f9ec),
|
||||||
|
X(0x29a3c485), X(0x7909a92d), X(0x29d34958), X(0x78f945c3),
|
||||||
|
X(0x2a02c7b8), X(0x78e8cfb2), X(0x2a323f9e), X(0x78d846fb),
|
||||||
|
X(0x2a61b101), X(0x78c7aba2), X(0x2a911bdc), X(0x78b6fda8),
|
||||||
|
X(0x2ac08026), X(0x78a63d11), X(0x2aefddd8), X(0x789569df),
|
||||||
|
X(0x2b1f34eb), X(0x78848414), X(0x2b4e8558), X(0x78738bb3),
|
||||||
|
X(0x2b7dcf17), X(0x786280bf), X(0x2bad1221), X(0x7851633b),
|
||||||
|
X(0x2bdc4e6f), X(0x78403329), X(0x2c0b83fa), X(0x782ef08b),
|
||||||
|
X(0x2c3ab2b9), X(0x781d9b65), X(0x2c69daa6), X(0x780c33b8),
|
||||||
|
X(0x2c98fbba), X(0x77fab989), X(0x2cc815ee), X(0x77e92cd9),
|
||||||
|
X(0x2cf72939), X(0x77d78daa), X(0x2d263596), X(0x77c5dc01),
|
||||||
|
X(0x2d553afc), X(0x77b417df), X(0x2d843964), X(0x77a24148),
|
||||||
|
X(0x2db330c7), X(0x7790583e), X(0x2de2211e), X(0x777e5cc3),
|
||||||
|
X(0x2e110a62), X(0x776c4edb), X(0x2e3fec8b), X(0x775a2e89),
|
||||||
|
X(0x2e6ec792), X(0x7747fbce), X(0x2e9d9b70), X(0x7735b6af),
|
||||||
|
X(0x2ecc681e), X(0x77235f2d), X(0x2efb2d95), X(0x7710f54c),
|
||||||
|
X(0x2f29ebcc), X(0x76fe790e), X(0x2f58a2be), X(0x76ebea77),
|
||||||
|
X(0x2f875262), X(0x76d94989), X(0x2fb5fab2), X(0x76c69647),
|
||||||
|
X(0x2fe49ba7), X(0x76b3d0b4), X(0x30133539), X(0x76a0f8d2),
|
||||||
|
X(0x3041c761), X(0x768e0ea6), X(0x30705217), X(0x767b1231),
|
||||||
|
X(0x309ed556), X(0x76680376), X(0x30cd5115), X(0x7654e279),
|
||||||
|
X(0x30fbc54d), X(0x7641af3d), X(0x312a31f8), X(0x762e69c4),
|
||||||
|
X(0x3158970e), X(0x761b1211), X(0x3186f487), X(0x7607a828),
|
||||||
|
X(0x31b54a5e), X(0x75f42c0b), X(0x31e39889), X(0x75e09dbd),
|
||||||
|
X(0x3211df04), X(0x75ccfd42), X(0x32401dc6), X(0x75b94a9c),
|
||||||
|
X(0x326e54c7), X(0x75a585cf), X(0x329c8402), X(0x7591aedd),
|
||||||
|
X(0x32caab6f), X(0x757dc5ca), X(0x32f8cb07), X(0x7569ca99),
|
||||||
|
X(0x3326e2c3), X(0x7555bd4c), X(0x3354f29b), X(0x75419de7),
|
||||||
|
X(0x3382fa88), X(0x752d6c6c), X(0x33b0fa84), X(0x751928e0),
|
||||||
|
X(0x33def287), X(0x7504d345), X(0x340ce28b), X(0x74f06b9e),
|
||||||
|
X(0x343aca87), X(0x74dbf1ef), X(0x3468aa76), X(0x74c7663a),
|
||||||
|
X(0x34968250), X(0x74b2c884), X(0x34c4520d), X(0x749e18cd),
|
||||||
|
X(0x34f219a8), X(0x7489571c), X(0x351fd918), X(0x74748371),
|
||||||
|
X(0x354d9057), X(0x745f9dd1), X(0x357b3f5d), X(0x744aa63f),
|
||||||
|
X(0x35a8e625), X(0x74359cbd), X(0x35d684a6), X(0x74208150),
|
||||||
|
X(0x36041ad9), X(0x740b53fb), X(0x3631a8b8), X(0x73f614c0),
|
||||||
|
X(0x365f2e3b), X(0x73e0c3a3), X(0x368cab5c), X(0x73cb60a8),
|
||||||
|
X(0x36ba2014), X(0x73b5ebd1), X(0x36e78c5b), X(0x73a06522),
|
||||||
|
X(0x3714f02a), X(0x738acc9e), X(0x37424b7b), X(0x73752249),
|
||||||
|
X(0x376f9e46), X(0x735f6626), X(0x379ce885), X(0x73499838),
|
||||||
|
X(0x37ca2a30), X(0x7333b883), X(0x37f76341), X(0x731dc70a),
|
||||||
|
X(0x382493b0), X(0x7307c3d0), X(0x3851bb77), X(0x72f1aed9),
|
||||||
|
X(0x387eda8e), X(0x72db8828), X(0x38abf0ef), X(0x72c54fc1),
|
||||||
|
X(0x38d8fe93), X(0x72af05a7), X(0x39060373), X(0x7298a9dd),
|
||||||
|
X(0x3932ff87), X(0x72823c67), X(0x395ff2c9), X(0x726bbd48),
|
||||||
|
X(0x398cdd32), X(0x72552c85), X(0x39b9bebc), X(0x723e8a20),
|
||||||
|
X(0x39e6975e), X(0x7227d61c), X(0x3a136712), X(0x7211107e),
|
||||||
|
X(0x3a402dd2), X(0x71fa3949), X(0x3a6ceb96), X(0x71e35080),
|
||||||
|
X(0x3a99a057), X(0x71cc5626), X(0x3ac64c0f), X(0x71b54a41),
|
||||||
|
X(0x3af2eeb7), X(0x719e2cd2), X(0x3b1f8848), X(0x7186fdde),
|
||||||
|
X(0x3b4c18ba), X(0x716fbd68), X(0x3b78a007), X(0x71586b74),
|
||||||
|
X(0x3ba51e29), X(0x71410805), X(0x3bd19318), X(0x7129931f),
|
||||||
|
X(0x3bfdfecd), X(0x71120cc5), X(0x3c2a6142), X(0x70fa74fc),
|
||||||
|
X(0x3c56ba70), X(0x70e2cbc6), X(0x3c830a50), X(0x70cb1128),
|
||||||
|
X(0x3caf50da), X(0x70b34525), X(0x3cdb8e09), X(0x709b67c0),
|
||||||
|
X(0x3d07c1d6), X(0x708378ff), X(0x3d33ec39), X(0x706b78e3),
|
||||||
|
X(0x3d600d2c), X(0x70536771), X(0x3d8c24a8), X(0x703b44ad),
|
||||||
|
X(0x3db832a6), X(0x7023109a), X(0x3de4371f), X(0x700acb3c),
|
||||||
|
X(0x3e10320d), X(0x6ff27497), X(0x3e3c2369), X(0x6fda0cae),
|
||||||
|
X(0x3e680b2c), X(0x6fc19385), X(0x3e93e950), X(0x6fa90921),
|
||||||
|
X(0x3ebfbdcd), X(0x6f906d84), X(0x3eeb889c), X(0x6f77c0b3),
|
||||||
|
X(0x3f1749b8), X(0x6f5f02b2), X(0x3f430119), X(0x6f463383),
|
||||||
|
X(0x3f6eaeb8), X(0x6f2d532c), X(0x3f9a5290), X(0x6f1461b0),
|
||||||
|
X(0x3fc5ec98), X(0x6efb5f12), X(0x3ff17cca), X(0x6ee24b57),
|
||||||
|
X(0x401d0321), X(0x6ec92683), X(0x40487f94), X(0x6eaff099),
|
||||||
|
X(0x4073f21d), X(0x6e96a99d), X(0x409f5ab6), X(0x6e7d5193),
|
||||||
|
X(0x40cab958), X(0x6e63e87f), X(0x40f60dfb), X(0x6e4a6e66),
|
||||||
|
X(0x4121589b), X(0x6e30e34a), X(0x414c992f), X(0x6e174730),
|
||||||
|
X(0x4177cfb1), X(0x6dfd9a1c), X(0x41a2fc1a), X(0x6de3dc11),
|
||||||
|
X(0x41ce1e65), X(0x6dca0d14), X(0x41f93689), X(0x6db02d29),
|
||||||
|
X(0x42244481), X(0x6d963c54), X(0x424f4845), X(0x6d7c3a98),
|
||||||
|
X(0x427a41d0), X(0x6d6227fa), X(0x42a5311b), X(0x6d48047e),
|
||||||
|
X(0x42d0161e), X(0x6d2dd027), X(0x42faf0d4), X(0x6d138afb),
|
||||||
|
X(0x4325c135), X(0x6cf934fc), X(0x4350873c), X(0x6cdece2f),
|
||||||
|
X(0x437b42e1), X(0x6cc45698), X(0x43a5f41e), X(0x6ca9ce3b),
|
||||||
|
X(0x43d09aed), X(0x6c8f351c), X(0x43fb3746), X(0x6c748b3f),
|
||||||
|
X(0x4425c923), X(0x6c59d0a9), X(0x4450507e), X(0x6c3f055d),
|
||||||
|
X(0x447acd50), X(0x6c242960), X(0x44a53f93), X(0x6c093cb6),
|
||||||
|
X(0x44cfa740), X(0x6bee3f62), X(0x44fa0450), X(0x6bd3316a),
|
||||||
|
X(0x452456bd), X(0x6bb812d1), X(0x454e9e80), X(0x6b9ce39b),
|
||||||
|
X(0x4578db93), X(0x6b81a3cd), X(0x45a30df0), X(0x6b66536b),
|
||||||
|
X(0x45cd358f), X(0x6b4af279), X(0x45f7526b), X(0x6b2f80fb),
|
||||||
|
X(0x4621647d), X(0x6b13fef5), X(0x464b6bbe), X(0x6af86c6c),
|
||||||
|
X(0x46756828), X(0x6adcc964), X(0x469f59b4), X(0x6ac115e2),
|
||||||
|
X(0x46c9405c), X(0x6aa551e9), X(0x46f31c1a), X(0x6a897d7d),
|
||||||
|
X(0x471cece7), X(0x6a6d98a4), X(0x4746b2bc), X(0x6a51a361),
|
||||||
|
X(0x47706d93), X(0x6a359db9), X(0x479a1d67), X(0x6a1987b0),
|
||||||
|
X(0x47c3c22f), X(0x69fd614a), X(0x47ed5be6), X(0x69e12a8c),
|
||||||
|
X(0x4816ea86), X(0x69c4e37a), X(0x48406e08), X(0x69a88c19),
|
||||||
|
X(0x4869e665), X(0x698c246c), X(0x48935397), X(0x696fac78),
|
||||||
|
X(0x48bcb599), X(0x69532442), X(0x48e60c62), X(0x69368bce),
|
||||||
|
X(0x490f57ee), X(0x6919e320), X(0x49389836), X(0x68fd2a3d),
|
||||||
|
X(0x4961cd33), X(0x68e06129), X(0x498af6df), X(0x68c387e9),
|
||||||
|
X(0x49b41533), X(0x68a69e81), X(0x49dd282a), X(0x6889a4f6),
|
||||||
|
X(0x4a062fbd), X(0x686c9b4b), X(0x4a2f2be6), X(0x684f8186),
|
||||||
|
X(0x4a581c9e), X(0x683257ab), X(0x4a8101de), X(0x68151dbe),
|
||||||
|
X(0x4aa9dba2), X(0x67f7d3c5), X(0x4ad2a9e2), X(0x67da79c3),
|
||||||
|
X(0x4afb6c98), X(0x67bd0fbd), X(0x4b2423be), X(0x679f95b7),
|
||||||
|
X(0x4b4ccf4d), X(0x67820bb7), X(0x4b756f40), X(0x676471c0),
|
||||||
|
X(0x4b9e0390), X(0x6746c7d8), X(0x4bc68c36), X(0x67290e02),
|
||||||
|
X(0x4bef092d), X(0x670b4444), X(0x4c177a6e), X(0x66ed6aa1),
|
||||||
|
X(0x4c3fdff4), X(0x66cf8120), X(0x4c6839b7), X(0x66b187c3),
|
||||||
|
X(0x4c9087b1), X(0x66937e91), X(0x4cb8c9dd), X(0x6675658c),
|
||||||
|
X(0x4ce10034), X(0x66573cbb), X(0x4d092ab0), X(0x66390422),
|
||||||
|
X(0x4d31494b), X(0x661abbc5), X(0x4d595bfe), X(0x65fc63a9),
|
||||||
|
X(0x4d8162c4), X(0x65ddfbd3), X(0x4da95d96), X(0x65bf8447),
|
||||||
|
X(0x4dd14c6e), X(0x65a0fd0b), X(0x4df92f46), X(0x65826622),
|
||||||
|
X(0x4e210617), X(0x6563bf92), X(0x4e48d0dd), X(0x6545095f),
|
||||||
|
X(0x4e708f8f), X(0x6526438f), X(0x4e984229), X(0x65076e25),
|
||||||
|
X(0x4ebfe8a5), X(0x64e88926), X(0x4ee782fb), X(0x64c99498),
|
||||||
|
X(0x4f0f1126), X(0x64aa907f), X(0x4f369320), X(0x648b7ce0),
|
||||||
|
X(0x4f5e08e3), X(0x646c59bf), X(0x4f857269), X(0x644d2722),
|
||||||
|
X(0x4faccfab), X(0x642de50d), X(0x4fd420a4), X(0x640e9386),
|
||||||
|
X(0x4ffb654d), X(0x63ef3290), X(0x50229da1), X(0x63cfc231),
|
||||||
|
X(0x5049c999), X(0x63b0426d), X(0x5070e92f), X(0x6390b34a),
|
||||||
|
X(0x5097fc5e), X(0x637114cc), X(0x50bf031f), X(0x635166f9),
|
||||||
|
X(0x50e5fd6d), X(0x6331a9d4), X(0x510ceb40), X(0x6311dd64),
|
||||||
|
X(0x5133cc94), X(0x62f201ac), X(0x515aa162), X(0x62d216b3),
|
||||||
|
X(0x518169a5), X(0x62b21c7b), X(0x51a82555), X(0x6292130c),
|
||||||
|
X(0x51ced46e), X(0x6271fa69), X(0x51f576ea), X(0x6251d298),
|
||||||
|
X(0x521c0cc2), X(0x62319b9d), X(0x524295f0), X(0x6211557e),
|
||||||
|
X(0x5269126e), X(0x61f1003f), X(0x528f8238), X(0x61d09be5),
|
||||||
|
X(0x52b5e546), X(0x61b02876), X(0x52dc3b92), X(0x618fa5f7),
|
||||||
|
X(0x53028518), X(0x616f146c), X(0x5328c1d0), X(0x614e73da),
|
||||||
|
X(0x534ef1b5), X(0x612dc447), X(0x537514c2), X(0x610d05b7),
|
||||||
|
X(0x539b2af0), X(0x60ec3830), X(0x53c13439), X(0x60cb5bb7),
|
||||||
|
X(0x53e73097), X(0x60aa7050), X(0x540d2005), X(0x60897601),
|
||||||
|
X(0x5433027d), X(0x60686ccf), X(0x5458d7f9), X(0x604754bf),
|
||||||
|
X(0x547ea073), X(0x60262dd6), X(0x54a45be6), X(0x6004f819),
|
||||||
|
X(0x54ca0a4b), X(0x5fe3b38d), X(0x54efab9c), X(0x5fc26038),
|
||||||
|
X(0x55153fd4), X(0x5fa0fe1f), X(0x553ac6ee), X(0x5f7f8d46),
|
||||||
|
X(0x556040e2), X(0x5f5e0db3), X(0x5585adad), X(0x5f3c7f6b),
|
||||||
|
X(0x55ab0d46), X(0x5f1ae274), X(0x55d05faa), X(0x5ef936d1),
|
||||||
|
X(0x55f5a4d2), X(0x5ed77c8a), X(0x561adcb9), X(0x5eb5b3a2),
|
||||||
|
X(0x56400758), X(0x5e93dc1f), X(0x566524aa), X(0x5e71f606),
|
||||||
|
X(0x568a34a9), X(0x5e50015d), X(0x56af3750), X(0x5e2dfe29),
|
||||||
|
X(0x56d42c99), X(0x5e0bec6e), X(0x56f9147e), X(0x5de9cc33),
|
||||||
|
X(0x571deefa), X(0x5dc79d7c), X(0x5742bc06), X(0x5da5604f),
|
||||||
|
X(0x57677b9d), X(0x5d8314b1), X(0x578c2dba), X(0x5d60baa7),
|
||||||
|
X(0x57b0d256), X(0x5d3e5237), X(0x57d5696d), X(0x5d1bdb65),
|
||||||
|
X(0x57f9f2f8), X(0x5cf95638), X(0x581e6ef1), X(0x5cd6c2b5),
|
||||||
|
X(0x5842dd54), X(0x5cb420e0), X(0x58673e1b), X(0x5c9170bf),
|
||||||
|
X(0x588b9140), X(0x5c6eb258), X(0x58afd6bd), X(0x5c4be5b0),
|
||||||
|
X(0x58d40e8c), X(0x5c290acc), X(0x58f838a9), X(0x5c0621b2),
|
||||||
|
X(0x591c550e), X(0x5be32a67), X(0x594063b5), X(0x5bc024f0),
|
||||||
|
X(0x59646498), X(0x5b9d1154), X(0x598857b2), X(0x5b79ef96),
|
||||||
|
X(0x59ac3cfd), X(0x5b56bfbd), X(0x59d01475), X(0x5b3381ce),
|
||||||
|
X(0x59f3de12), X(0x5b1035cf), X(0x5a1799d1), X(0x5aecdbc5),
|
||||||
|
X(0x5a3b47ab), X(0x5ac973b5), X(0x5a5ee79a), X(0x5aa5fda5),
|
||||||
|
X(0x5a82799a), X(0x5a82799a)
|
||||||
|
};
|
||||||
|
|
||||||
|
/* {sin((2*i+1)*PI/4096), cos((2*i+1)*PI/4096)}, with i = 0 to 511 */
|
||||||
|
static const int32_t sincos_lookup1[1024] = {
|
||||||
|
X(0x001921fb), X(0x7ffffd88), X(0x004b65ee), X(0x7fffe9cb),
|
||||||
|
X(0x007da9d4), X(0x7fffc251), X(0x00afeda8), X(0x7fff8719),
|
||||||
|
X(0x00e23160), X(0x7fff3824), X(0x011474f6), X(0x7ffed572),
|
||||||
|
X(0x0146b860), X(0x7ffe5f03), X(0x0178fb99), X(0x7ffdd4d7),
|
||||||
|
X(0x01ab3e97), X(0x7ffd36ee), X(0x01dd8154), X(0x7ffc8549),
|
||||||
|
X(0x020fc3c6), X(0x7ffbbfe6), X(0x024205e8), X(0x7ffae6c7),
|
||||||
|
X(0x027447b0), X(0x7ff9f9ec), X(0x02a68917), X(0x7ff8f954),
|
||||||
|
X(0x02d8ca16), X(0x7ff7e500), X(0x030b0aa4), X(0x7ff6bcf0),
|
||||||
|
X(0x033d4abb), X(0x7ff58125), X(0x036f8a51), X(0x7ff4319d),
|
||||||
|
X(0x03a1c960), X(0x7ff2ce5b), X(0x03d407df), X(0x7ff1575d),
|
||||||
|
X(0x040645c7), X(0x7fefcca4), X(0x04388310), X(0x7fee2e30),
|
||||||
|
X(0x046abfb3), X(0x7fec7c02), X(0x049cfba7), X(0x7feab61a),
|
||||||
|
X(0x04cf36e5), X(0x7fe8dc78), X(0x05017165), X(0x7fe6ef1c),
|
||||||
|
X(0x0533ab20), X(0x7fe4ee06), X(0x0565e40d), X(0x7fe2d938),
|
||||||
|
X(0x05981c26), X(0x7fe0b0b1), X(0x05ca5361), X(0x7fde7471),
|
||||||
|
X(0x05fc89b8), X(0x7fdc247a), X(0x062ebf22), X(0x7fd9c0ca),
|
||||||
|
X(0x0660f398), X(0x7fd74964), X(0x06932713), X(0x7fd4be46),
|
||||||
|
X(0x06c5598a), X(0x7fd21f72), X(0x06f78af6), X(0x7fcf6ce8),
|
||||||
|
X(0x0729bb4e), X(0x7fcca6a7), X(0x075bea8c), X(0x7fc9ccb2),
|
||||||
|
X(0x078e18a7), X(0x7fc6df08), X(0x07c04598), X(0x7fc3dda9),
|
||||||
|
X(0x07f27157), X(0x7fc0c896), X(0x08249bdd), X(0x7fbd9fd0),
|
||||||
|
X(0x0856c520), X(0x7fba6357), X(0x0888ed1b), X(0x7fb7132b),
|
||||||
|
X(0x08bb13c5), X(0x7fb3af4e), X(0x08ed3916), X(0x7fb037bf),
|
||||||
|
X(0x091f5d06), X(0x7facac7f), X(0x09517f8f), X(0x7fa90d8e),
|
||||||
|
X(0x0983a0a7), X(0x7fa55aee), X(0x09b5c048), X(0x7fa1949e),
|
||||||
|
X(0x09e7de6a), X(0x7f9dbaa0), X(0x0a19fb04), X(0x7f99ccf4),
|
||||||
|
X(0x0a4c1610), X(0x7f95cb9a), X(0x0a7e2f85), X(0x7f91b694),
|
||||||
|
X(0x0ab0475c), X(0x7f8d8de1), X(0x0ae25d8d), X(0x7f895182),
|
||||||
|
X(0x0b147211), X(0x7f850179), X(0x0b4684df), X(0x7f809dc5),
|
||||||
|
X(0x0b7895f0), X(0x7f7c2668), X(0x0baaa53b), X(0x7f779b62),
|
||||||
|
X(0x0bdcb2bb), X(0x7f72fcb4), X(0x0c0ebe66), X(0x7f6e4a5e),
|
||||||
|
X(0x0c40c835), X(0x7f698461), X(0x0c72d020), X(0x7f64aabf),
|
||||||
|
X(0x0ca4d620), X(0x7f5fbd77), X(0x0cd6da2d), X(0x7f5abc8a),
|
||||||
|
X(0x0d08dc3f), X(0x7f55a7fa), X(0x0d3adc4e), X(0x7f507fc7),
|
||||||
|
X(0x0d6cda53), X(0x7f4b43f2), X(0x0d9ed646), X(0x7f45f47b),
|
||||||
|
X(0x0dd0d01f), X(0x7f409164), X(0x0e02c7d7), X(0x7f3b1aad),
|
||||||
|
X(0x0e34bd66), X(0x7f359057), X(0x0e66b0c3), X(0x7f2ff263),
|
||||||
|
X(0x0e98a1e9), X(0x7f2a40d2), X(0x0eca90ce), X(0x7f247ba5),
|
||||||
|
X(0x0efc7d6b), X(0x7f1ea2dc), X(0x0f2e67b8), X(0x7f18b679),
|
||||||
|
X(0x0f604faf), X(0x7f12b67c), X(0x0f923546), X(0x7f0ca2e7),
|
||||||
|
X(0x0fc41876), X(0x7f067bba), X(0x0ff5f938), X(0x7f0040f6),
|
||||||
|
X(0x1027d784), X(0x7ef9f29d), X(0x1059b352), X(0x7ef390ae),
|
||||||
|
X(0x108b8c9b), X(0x7eed1b2c), X(0x10bd6356), X(0x7ee69217),
|
||||||
|
X(0x10ef377d), X(0x7edff570), X(0x11210907), X(0x7ed94538),
|
||||||
|
X(0x1152d7ed), X(0x7ed28171), X(0x1184a427), X(0x7ecbaa1a),
|
||||||
|
X(0x11b66dad), X(0x7ec4bf36), X(0x11e83478), X(0x7ebdc0c6),
|
||||||
|
X(0x1219f880), X(0x7eb6aeca), X(0x124bb9be), X(0x7eaf8943),
|
||||||
|
X(0x127d7829), X(0x7ea85033), X(0x12af33ba), X(0x7ea1039b),
|
||||||
|
X(0x12e0ec6a), X(0x7e99a37c), X(0x1312a230), X(0x7e922fd6),
|
||||||
|
X(0x13445505), X(0x7e8aa8ac), X(0x137604e2), X(0x7e830dff),
|
||||||
|
X(0x13a7b1bf), X(0x7e7b5fce), X(0x13d95b93), X(0x7e739e1d),
|
||||||
|
X(0x140b0258), X(0x7e6bc8eb), X(0x143ca605), X(0x7e63e03b),
|
||||||
|
X(0x146e4694), X(0x7e5be40c), X(0x149fe3fc), X(0x7e53d462),
|
||||||
|
X(0x14d17e36), X(0x7e4bb13c), X(0x1503153a), X(0x7e437a9c),
|
||||||
|
X(0x1534a901), X(0x7e3b3083), X(0x15663982), X(0x7e32d2f4),
|
||||||
|
X(0x1597c6b7), X(0x7e2a61ed), X(0x15c95097), X(0x7e21dd73),
|
||||||
|
X(0x15fad71b), X(0x7e194584), X(0x162c5a3b), X(0x7e109a24),
|
||||||
|
X(0x165dd9f0), X(0x7e07db52), X(0x168f5632), X(0x7dff0911),
|
||||||
|
X(0x16c0cef9), X(0x7df62362), X(0x16f2443e), X(0x7ded2a47),
|
||||||
|
X(0x1723b5f9), X(0x7de41dc0), X(0x17552422), X(0x7ddafdce),
|
||||||
|
X(0x17868eb3), X(0x7dd1ca75), X(0x17b7f5a3), X(0x7dc883b4),
|
||||||
|
X(0x17e958ea), X(0x7dbf298d), X(0x181ab881), X(0x7db5bc02),
|
||||||
|
X(0x184c1461), X(0x7dac3b15), X(0x187d6c82), X(0x7da2a6c6),
|
||||||
|
X(0x18aec0db), X(0x7d98ff17), X(0x18e01167), X(0x7d8f4409),
|
||||||
|
X(0x19115e1c), X(0x7d85759f), X(0x1942a6f3), X(0x7d7b93da),
|
||||||
|
X(0x1973ebe6), X(0x7d719eba), X(0x19a52ceb), X(0x7d679642),
|
||||||
|
X(0x19d669fc), X(0x7d5d7a74), X(0x1a07a311), X(0x7d534b50),
|
||||||
|
X(0x1a38d823), X(0x7d4908d9), X(0x1a6a0929), X(0x7d3eb30f),
|
||||||
|
X(0x1a9b361d), X(0x7d3449f5), X(0x1acc5ef6), X(0x7d29cd8c),
|
||||||
|
X(0x1afd83ad), X(0x7d1f3dd6), X(0x1b2ea43a), X(0x7d149ad5),
|
||||||
|
X(0x1b5fc097), X(0x7d09e489), X(0x1b90d8bb), X(0x7cff1af5),
|
||||||
|
X(0x1bc1ec9e), X(0x7cf43e1a), X(0x1bf2fc3a), X(0x7ce94dfb),
|
||||||
|
X(0x1c240786), X(0x7cde4a98), X(0x1c550e7c), X(0x7cd333f3),
|
||||||
|
X(0x1c861113), X(0x7cc80a0f), X(0x1cb70f43), X(0x7cbcccec),
|
||||||
|
X(0x1ce80906), X(0x7cb17c8d), X(0x1d18fe54), X(0x7ca618f3),
|
||||||
|
X(0x1d49ef26), X(0x7c9aa221), X(0x1d7adb73), X(0x7c8f1817),
|
||||||
|
X(0x1dabc334), X(0x7c837ad8), X(0x1ddca662), X(0x7c77ca65),
|
||||||
|
X(0x1e0d84f5), X(0x7c6c06c0), X(0x1e3e5ee5), X(0x7c602fec),
|
||||||
|
X(0x1e6f342c), X(0x7c5445e9), X(0x1ea004c1), X(0x7c4848ba),
|
||||||
|
X(0x1ed0d09d), X(0x7c3c3860), X(0x1f0197b8), X(0x7c3014de),
|
||||||
|
X(0x1f325a0b), X(0x7c23de35), X(0x1f63178f), X(0x7c179467),
|
||||||
|
X(0x1f93d03c), X(0x7c0b3777), X(0x1fc4840a), X(0x7bfec765),
|
||||||
|
X(0x1ff532f2), X(0x7bf24434), X(0x2025dcec), X(0x7be5ade6),
|
||||||
|
X(0x205681f1), X(0x7bd9047c), X(0x208721f9), X(0x7bcc47fa),
|
||||||
|
X(0x20b7bcfe), X(0x7bbf7860), X(0x20e852f6), X(0x7bb295b0),
|
||||||
|
X(0x2118e3dc), X(0x7ba59fee), X(0x21496fa7), X(0x7b989719),
|
||||||
|
X(0x2179f64f), X(0x7b8b7b36), X(0x21aa77cf), X(0x7b7e4c45),
|
||||||
|
X(0x21daf41d), X(0x7b710a49), X(0x220b6b32), X(0x7b63b543),
|
||||||
|
X(0x223bdd08), X(0x7b564d36), X(0x226c4996), X(0x7b48d225),
|
||||||
|
X(0x229cb0d5), X(0x7b3b4410), X(0x22cd12bd), X(0x7b2da2fa),
|
||||||
|
X(0x22fd6f48), X(0x7b1feee5), X(0x232dc66d), X(0x7b1227d3),
|
||||||
|
X(0x235e1826), X(0x7b044dc7), X(0x238e646a), X(0x7af660c2),
|
||||||
|
X(0x23beab33), X(0x7ae860c7), X(0x23eeec78), X(0x7ada4dd8),
|
||||||
|
X(0x241f2833), X(0x7acc27f7), X(0x244f5e5c), X(0x7abdef25),
|
||||||
|
X(0x247f8eec), X(0x7aafa367), X(0x24afb9da), X(0x7aa144bc),
|
||||||
|
X(0x24dfdf20), X(0x7a92d329), X(0x250ffeb7), X(0x7a844eae),
|
||||||
|
X(0x25401896), X(0x7a75b74f), X(0x25702cb7), X(0x7a670d0d),
|
||||||
|
X(0x25a03b11), X(0x7a584feb), X(0x25d0439f), X(0x7a497feb),
|
||||||
|
X(0x26004657), X(0x7a3a9d0f), X(0x26304333), X(0x7a2ba75a),
|
||||||
|
X(0x26603a2c), X(0x7a1c9ece), X(0x26902b39), X(0x7a0d836d),
|
||||||
|
X(0x26c01655), X(0x79fe5539), X(0x26effb76), X(0x79ef1436),
|
||||||
|
X(0x271fda96), X(0x79dfc064), X(0x274fb3ae), X(0x79d059c8),
|
||||||
|
X(0x277f86b5), X(0x79c0e062), X(0x27af53a6), X(0x79b15435),
|
||||||
|
X(0x27df1a77), X(0x79a1b545), X(0x280edb23), X(0x79920392),
|
||||||
|
X(0x283e95a1), X(0x79823f20), X(0x286e49ea), X(0x797267f2),
|
||||||
|
X(0x289df7f8), X(0x79627e08), X(0x28cd9fc1), X(0x79528167),
|
||||||
|
X(0x28fd4140), X(0x79427210), X(0x292cdc6d), X(0x79325006),
|
||||||
|
X(0x295c7140), X(0x79221b4b), X(0x298bffb2), X(0x7911d3e2),
|
||||||
|
X(0x29bb87bc), X(0x790179cd), X(0x29eb0957), X(0x78f10d0f),
|
||||||
|
X(0x2a1a847b), X(0x78e08dab), X(0x2a49f920), X(0x78cffba3),
|
||||||
|
X(0x2a796740), X(0x78bf56f9), X(0x2aa8ced3), X(0x78ae9fb0),
|
||||||
|
X(0x2ad82fd2), X(0x789dd5cb), X(0x2b078a36), X(0x788cf94c),
|
||||||
|
X(0x2b36ddf7), X(0x787c0a36), X(0x2b662b0e), X(0x786b088c),
|
||||||
|
X(0x2b957173), X(0x7859f44f), X(0x2bc4b120), X(0x7848cd83),
|
||||||
|
X(0x2bf3ea0d), X(0x7837942b), X(0x2c231c33), X(0x78264849),
|
||||||
|
X(0x2c52478a), X(0x7814e9df), X(0x2c816c0c), X(0x780378f1),
|
||||||
|
X(0x2cb089b1), X(0x77f1f581), X(0x2cdfa071), X(0x77e05f91),
|
||||||
|
X(0x2d0eb046), X(0x77ceb725), X(0x2d3db928), X(0x77bcfc3f),
|
||||||
|
X(0x2d6cbb10), X(0x77ab2ee2), X(0x2d9bb5f6), X(0x77994f11),
|
||||||
|
X(0x2dcaa9d5), X(0x77875cce), X(0x2df996a3), X(0x7775581d),
|
||||||
|
X(0x2e287c5a), X(0x776340ff), X(0x2e575af3), X(0x77511778),
|
||||||
|
X(0x2e863267), X(0x773edb8b), X(0x2eb502ae), X(0x772c8d3a),
|
||||||
|
X(0x2ee3cbc1), X(0x771a2c88), X(0x2f128d99), X(0x7707b979),
|
||||||
|
X(0x2f41482e), X(0x76f5340e), X(0x2f6ffb7a), X(0x76e29c4b),
|
||||||
|
X(0x2f9ea775), X(0x76cff232), X(0x2fcd4c19), X(0x76bd35c7),
|
||||||
|
X(0x2ffbe95d), X(0x76aa670d), X(0x302a7f3a), X(0x76978605),
|
||||||
|
X(0x30590dab), X(0x768492b4), X(0x308794a6), X(0x76718d1c),
|
||||||
|
X(0x30b61426), X(0x765e7540), X(0x30e48c22), X(0x764b4b23),
|
||||||
|
X(0x3112fc95), X(0x76380ec8), X(0x31416576), X(0x7624c031),
|
||||||
|
X(0x316fc6be), X(0x76115f63), X(0x319e2067), X(0x75fdec60),
|
||||||
|
X(0x31cc7269), X(0x75ea672a), X(0x31fabcbd), X(0x75d6cfc5),
|
||||||
|
X(0x3228ff5c), X(0x75c32634), X(0x32573a3f), X(0x75af6a7b),
|
||||||
|
X(0x32856d5e), X(0x759b9c9b), X(0x32b398b3), X(0x7587bc98),
|
||||||
|
X(0x32e1bc36), X(0x7573ca75), X(0x330fd7e1), X(0x755fc635),
|
||||||
|
X(0x333debab), X(0x754bafdc), X(0x336bf78f), X(0x7537876c),
|
||||||
|
X(0x3399fb85), X(0x75234ce8), X(0x33c7f785), X(0x750f0054),
|
||||||
|
X(0x33f5eb89), X(0x74faa1b3), X(0x3423d78a), X(0x74e63108),
|
||||||
|
X(0x3451bb81), X(0x74d1ae55), X(0x347f9766), X(0x74bd199f),
|
||||||
|
X(0x34ad6b32), X(0x74a872e8), X(0x34db36df), X(0x7493ba34),
|
||||||
|
X(0x3508fa66), X(0x747eef85), X(0x3536b5be), X(0x746a12df),
|
||||||
|
X(0x356468e2), X(0x74552446), X(0x359213c9), X(0x744023bc),
|
||||||
|
X(0x35bfb66e), X(0x742b1144), X(0x35ed50c9), X(0x7415ece2),
|
||||||
|
X(0x361ae2d3), X(0x7400b69a), X(0x36486c86), X(0x73eb6e6e),
|
||||||
|
X(0x3675edd9), X(0x73d61461), X(0x36a366c6), X(0x73c0a878),
|
||||||
|
X(0x36d0d746), X(0x73ab2ab4), X(0x36fe3f52), X(0x73959b1b),
|
||||||
|
X(0x372b9ee3), X(0x737ff9ae), X(0x3758f5f2), X(0x736a4671),
|
||||||
|
X(0x37864477), X(0x73548168), X(0x37b38a6d), X(0x733eaa96),
|
||||||
|
X(0x37e0c7cc), X(0x7328c1ff), X(0x380dfc8d), X(0x7312c7a5),
|
||||||
|
X(0x383b28a9), X(0x72fcbb8c), X(0x38684c19), X(0x72e69db7),
|
||||||
|
X(0x389566d6), X(0x72d06e2b), X(0x38c278d9), X(0x72ba2cea),
|
||||||
|
X(0x38ef821c), X(0x72a3d9f7), X(0x391c8297), X(0x728d7557),
|
||||||
|
X(0x39497a43), X(0x7276ff0d), X(0x39766919), X(0x7260771b),
|
||||||
|
X(0x39a34f13), X(0x7249dd86), X(0x39d02c2a), X(0x72333251),
|
||||||
|
X(0x39fd0056), X(0x721c7580), X(0x3a29cb91), X(0x7205a716),
|
||||||
|
X(0x3a568dd4), X(0x71eec716), X(0x3a834717), X(0x71d7d585),
|
||||||
|
X(0x3aaff755), X(0x71c0d265), X(0x3adc9e86), X(0x71a9bdba),
|
||||||
|
X(0x3b093ca3), X(0x71929789), X(0x3b35d1a5), X(0x717b5fd3),
|
||||||
|
X(0x3b625d86), X(0x7164169d), X(0x3b8ee03e), X(0x714cbbeb),
|
||||||
|
X(0x3bbb59c7), X(0x71354fc0), X(0x3be7ca1a), X(0x711dd220),
|
||||||
|
X(0x3c143130), X(0x7106430e), X(0x3c408f03), X(0x70eea28e),
|
||||||
|
X(0x3c6ce38a), X(0x70d6f0a4), X(0x3c992ec0), X(0x70bf2d53),
|
||||||
|
X(0x3cc5709e), X(0x70a7589f), X(0x3cf1a91c), X(0x708f728b),
|
||||||
|
X(0x3d1dd835), X(0x70777b1c), X(0x3d49fde1), X(0x705f7255),
|
||||||
|
X(0x3d761a19), X(0x70475839), X(0x3da22cd7), X(0x702f2ccd),
|
||||||
|
X(0x3dce3614), X(0x7016f014), X(0x3dfa35c8), X(0x6ffea212),
|
||||||
|
X(0x3e262bee), X(0x6fe642ca), X(0x3e52187f), X(0x6fcdd241),
|
||||||
|
X(0x3e7dfb73), X(0x6fb5507a), X(0x3ea9d4c3), X(0x6f9cbd79),
|
||||||
|
X(0x3ed5a46b), X(0x6f841942), X(0x3f016a61), X(0x6f6b63d8),
|
||||||
|
X(0x3f2d26a0), X(0x6f529d40), X(0x3f58d921), X(0x6f39c57d),
|
||||||
|
X(0x3f8481dd), X(0x6f20dc92), X(0x3fb020ce), X(0x6f07e285),
|
||||||
|
X(0x3fdbb5ec), X(0x6eeed758), X(0x40074132), X(0x6ed5bb10),
|
||||||
|
X(0x4032c297), X(0x6ebc8db0), X(0x405e3a16), X(0x6ea34f3d),
|
||||||
|
X(0x4089a7a8), X(0x6e89ffb9), X(0x40b50b46), X(0x6e709f2a),
|
||||||
|
X(0x40e064ea), X(0x6e572d93), X(0x410bb48c), X(0x6e3daaf8),
|
||||||
|
X(0x4136fa27), X(0x6e24175c), X(0x416235b2), X(0x6e0a72c5),
|
||||||
|
X(0x418d6729), X(0x6df0bd35), X(0x41b88e84), X(0x6dd6f6b1),
|
||||||
|
X(0x41e3abbc), X(0x6dbd1f3c), X(0x420ebecb), X(0x6da336dc),
|
||||||
|
X(0x4239c7aa), X(0x6d893d93), X(0x4264c653), X(0x6d6f3365),
|
||||||
|
X(0x428fbabe), X(0x6d551858), X(0x42baa4e6), X(0x6d3aec6e),
|
||||||
|
X(0x42e584c3), X(0x6d20afac), X(0x43105a50), X(0x6d066215),
|
||||||
|
X(0x433b2585), X(0x6cec03af), X(0x4365e65b), X(0x6cd1947c),
|
||||||
|
X(0x43909ccd), X(0x6cb71482), X(0x43bb48d4), X(0x6c9c83c3),
|
||||||
|
X(0x43e5ea68), X(0x6c81e245), X(0x44108184), X(0x6c67300b),
|
||||||
|
X(0x443b0e21), X(0x6c4c6d1a), X(0x44659039), X(0x6c319975),
|
||||||
|
X(0x449007c4), X(0x6c16b521), X(0x44ba74bd), X(0x6bfbc021),
|
||||||
|
X(0x44e4d71c), X(0x6be0ba7b), X(0x450f2edb), X(0x6bc5a431),
|
||||||
|
X(0x45397bf4), X(0x6baa7d49), X(0x4563be60), X(0x6b8f45c7),
|
||||||
|
X(0x458df619), X(0x6b73fdae), X(0x45b82318), X(0x6b58a503),
|
||||||
|
X(0x45e24556), X(0x6b3d3bcb), X(0x460c5cce), X(0x6b21c208),
|
||||||
|
X(0x46366978), X(0x6b0637c1), X(0x46606b4e), X(0x6aea9cf8),
|
||||||
|
X(0x468a624a), X(0x6acef1b2), X(0x46b44e65), X(0x6ab335f4),
|
||||||
|
X(0x46de2f99), X(0x6a9769c1), X(0x470805df), X(0x6a7b8d1e),
|
||||||
|
X(0x4731d131), X(0x6a5fa010), X(0x475b9188), X(0x6a43a29a),
|
||||||
|
X(0x478546de), X(0x6a2794c1), X(0x47aef12c), X(0x6a0b7689),
|
||||||
|
X(0x47d8906d), X(0x69ef47f6), X(0x48022499), X(0x69d3090e),
|
||||||
|
X(0x482badab), X(0x69b6b9d3), X(0x48552b9b), X(0x699a5a4c),
|
||||||
|
X(0x487e9e64), X(0x697dea7b), X(0x48a805ff), X(0x69616a65),
|
||||||
|
X(0x48d16265), X(0x6944da10), X(0x48fab391), X(0x6928397e),
|
||||||
|
X(0x4923f97b), X(0x690b88b5), X(0x494d341e), X(0x68eec7b9),
|
||||||
|
X(0x49766373), X(0x68d1f68f), X(0x499f8774), X(0x68b5153a),
|
||||||
|
X(0x49c8a01b), X(0x689823bf), X(0x49f1ad61), X(0x687b2224),
|
||||||
|
X(0x4a1aaf3f), X(0x685e106c), X(0x4a43a5b0), X(0x6840ee9b),
|
||||||
|
X(0x4a6c90ad), X(0x6823bcb7), X(0x4a957030), X(0x68067ac3),
|
||||||
|
X(0x4abe4433), X(0x67e928c5), X(0x4ae70caf), X(0x67cbc6c0),
|
||||||
|
X(0x4b0fc99d), X(0x67ae54ba), X(0x4b387af9), X(0x6790d2b6),
|
||||||
|
X(0x4b6120bb), X(0x677340ba), X(0x4b89badd), X(0x67559eca),
|
||||||
|
X(0x4bb24958), X(0x6737ecea), X(0x4bdacc28), X(0x671a2b20),
|
||||||
|
X(0x4c034345), X(0x66fc596f), X(0x4c2baea9), X(0x66de77dc),
|
||||||
|
X(0x4c540e4e), X(0x66c0866d), X(0x4c7c622d), X(0x66a28524),
|
||||||
|
X(0x4ca4aa41), X(0x66847408), X(0x4ccce684), X(0x6666531d),
|
||||||
|
X(0x4cf516ee), X(0x66482267), X(0x4d1d3b7a), X(0x6629e1ec),
|
||||||
|
X(0x4d455422), X(0x660b91af), X(0x4d6d60df), X(0x65ed31b5),
|
||||||
|
X(0x4d9561ac), X(0x65cec204), X(0x4dbd5682), X(0x65b0429f),
|
||||||
|
X(0x4de53f5a), X(0x6591b38c), X(0x4e0d1c30), X(0x657314cf),
|
||||||
|
X(0x4e34ecfc), X(0x6554666d), X(0x4e5cb1b9), X(0x6535a86b),
|
||||||
|
X(0x4e846a60), X(0x6516dacd), X(0x4eac16eb), X(0x64f7fd98),
|
||||||
|
X(0x4ed3b755), X(0x64d910d1), X(0x4efb4b96), X(0x64ba147d),
|
||||||
|
X(0x4f22d3aa), X(0x649b08a0), X(0x4f4a4f89), X(0x647bed3f),
|
||||||
|
X(0x4f71bf2e), X(0x645cc260), X(0x4f992293), X(0x643d8806),
|
||||||
|
X(0x4fc079b1), X(0x641e3e38), X(0x4fe7c483), X(0x63fee4f8),
|
||||||
|
X(0x500f0302), X(0x63df7c4d), X(0x50363529), X(0x63c0043b),
|
||||||
|
X(0x505d5af1), X(0x63a07cc7), X(0x50847454), X(0x6380e5f6),
|
||||||
|
X(0x50ab814d), X(0x63613fcd), X(0x50d281d5), X(0x63418a50),
|
||||||
|
X(0x50f975e6), X(0x6321c585), X(0x51205d7b), X(0x6301f171),
|
||||||
|
X(0x5147388c), X(0x62e20e17), X(0x516e0715), X(0x62c21b7e),
|
||||||
|
X(0x5194c910), X(0x62a219aa), X(0x51bb7e75), X(0x628208a1),
|
||||||
|
X(0x51e22740), X(0x6261e866), X(0x5208c36a), X(0x6241b8ff),
|
||||||
|
X(0x522f52ee), X(0x62217a72), X(0x5255d5c5), X(0x62012cc2),
|
||||||
|
X(0x527c4bea), X(0x61e0cff5), X(0x52a2b556), X(0x61c06410),
|
||||||
|
X(0x52c91204), X(0x619fe918), X(0x52ef61ee), X(0x617f5f12),
|
||||||
|
X(0x5315a50e), X(0x615ec603), X(0x533bdb5d), X(0x613e1df0),
|
||||||
|
X(0x536204d7), X(0x611d66de), X(0x53882175), X(0x60fca0d2),
|
||||||
|
X(0x53ae3131), X(0x60dbcbd1), X(0x53d43406), X(0x60bae7e1),
|
||||||
|
X(0x53fa29ed), X(0x6099f505), X(0x542012e1), X(0x6078f344),
|
||||||
|
X(0x5445eedb), X(0x6057e2a2), X(0x546bbdd7), X(0x6036c325),
|
||||||
|
X(0x54917fce), X(0x601594d1), X(0x54b734ba), X(0x5ff457ad),
|
||||||
|
X(0x54dcdc96), X(0x5fd30bbc), X(0x5502775c), X(0x5fb1b104),
|
||||||
|
X(0x55280505), X(0x5f90478a), X(0x554d858d), X(0x5f6ecf53),
|
||||||
|
X(0x5572f8ed), X(0x5f4d4865), X(0x55985f20), X(0x5f2bb2c5),
|
||||||
|
X(0x55bdb81f), X(0x5f0a0e77), X(0x55e303e6), X(0x5ee85b82),
|
||||||
|
X(0x5608426e), X(0x5ec699e9), X(0x562d73b2), X(0x5ea4c9b3),
|
||||||
|
X(0x565297ab), X(0x5e82eae5), X(0x5677ae54), X(0x5e60fd84),
|
||||||
|
X(0x569cb7a8), X(0x5e3f0194), X(0x56c1b3a1), X(0x5e1cf71c),
|
||||||
|
X(0x56e6a239), X(0x5dfade20), X(0x570b8369), X(0x5dd8b6a7),
|
||||||
|
X(0x5730572e), X(0x5db680b4), X(0x57551d80), X(0x5d943c4e),
|
||||||
|
X(0x5779d65b), X(0x5d71e979), X(0x579e81b8), X(0x5d4f883b),
|
||||||
|
X(0x57c31f92), X(0x5d2d189a), X(0x57e7afe4), X(0x5d0a9a9a),
|
||||||
|
X(0x580c32a7), X(0x5ce80e41), X(0x5830a7d6), X(0x5cc57394),
|
||||||
|
X(0x58550f6c), X(0x5ca2ca99), X(0x58796962), X(0x5c801354),
|
||||||
|
X(0x589db5b3), X(0x5c5d4dcc), X(0x58c1f45b), X(0x5c3a7a05),
|
||||||
|
X(0x58e62552), X(0x5c179806), X(0x590a4893), X(0x5bf4a7d2),
|
||||||
|
X(0x592e5e19), X(0x5bd1a971), X(0x595265df), X(0x5bae9ce7),
|
||||||
|
X(0x59765fde), X(0x5b8b8239), X(0x599a4c12), X(0x5b68596d),
|
||||||
|
X(0x59be2a74), X(0x5b452288), X(0x59e1faff), X(0x5b21dd90),
|
||||||
|
X(0x5a05bdae), X(0x5afe8a8b), X(0x5a29727b), X(0x5adb297d),
|
||||||
|
X(0x5a4d1960), X(0x5ab7ba6c), X(0x5a70b258), X(0x5a943d5e),
|
||||||
|
};
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
#include "codeclib.h"
|
||||||
|
|
||||||
|
#define fixed32 int32_t
|
||||||
|
#define fixed64 int64_t
|
|
@ -0,0 +1,20 @@
|
||||||
|
|
||||||
|
MULT32
|
||||||
|
ENDP
|
||||||
|
|
||||||
|
MULT31_SHIFT15
|
||||||
|
ENDP
|
||||||
|
|
||||||
|
XPROD32
|
||||||
|
ENDP
|
||||||
|
|
||||||
|
XPROD31
|
||||||
|
ENDP
|
||||||
|
|
||||||
|
XNPROD31
|
||||||
|
ENDP
|
||||||
|
|
||||||
|
CLIP_TO_15
|
||||||
|
ENDP
|
||||||
|
|
||||||
|
END
|
|
@ -0,0 +1,271 @@
|
||||||
|
/*
|
||||||
|
* Common bit i/o utils
|
||||||
|
* Copyright (c) 2000, 2001 Fabrice Bellard.
|
||||||
|
* Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
*
|
||||||
|
* alternative bitstream reader & writer by Michael Niedermayer <michaelni@gmx.at>
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file bitstream.c
|
||||||
|
* bitstream api.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "wmabitstream.h"
|
||||||
|
#include "codeclib.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Same as av_mallocz_static(), but does a realloc.
|
||||||
|
*
|
||||||
|
* @param[in] ptr The block of memory to reallocate.
|
||||||
|
* @param[in] size The requested size.
|
||||||
|
* @return Block of memory of requested size.
|
||||||
|
* @deprecated. Code which uses ff_realloc_static is broken/missdesigned
|
||||||
|
* and should correctly use static arrays
|
||||||
|
*/
|
||||||
|
attribute_deprecated void *ff_realloc_static(void *ptr, unsigned int size);
|
||||||
|
|
||||||
|
|
||||||
|
const uint8_t ff_sqrt_tab[128]={
|
||||||
|
0, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5,
|
||||||
|
5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
|
||||||
|
8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
|
||||||
|
9, 9, 9, 9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11
|
||||||
|
};
|
||||||
|
|
||||||
|
const uint8_t ff_log2_tab[256]={
|
||||||
|
0,0,1,1,2,2,2,2,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,
|
||||||
|
5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
|
||||||
|
6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
|
||||||
|
6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
|
||||||
|
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
|
||||||
|
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
|
||||||
|
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
|
||||||
|
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
void align_put_bits(PutBitContext *s)
|
||||||
|
{
|
||||||
|
#ifdef ALT_BITSTREAM_WRITER
|
||||||
|
put_bits(s,( - s->index) & 7,0);
|
||||||
|
#else
|
||||||
|
put_bits(s,s->bit_left & 7,0);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
void ff_put_string(PutBitContext * pbc, char *s, int put_zero)
|
||||||
|
{
|
||||||
|
while(*s){
|
||||||
|
put_bits(pbc, 8, *s);
|
||||||
|
s++;
|
||||||
|
}
|
||||||
|
if(put_zero)
|
||||||
|
put_bits(pbc, 8, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* VLC decoding */
|
||||||
|
|
||||||
|
//#define DEBUG_VLC
|
||||||
|
|
||||||
|
#define GET_DATA(v, table, i, wrap, size) \
|
||||||
|
{\
|
||||||
|
const uint8_t *ptr = (const uint8_t *)table + i * wrap;\
|
||||||
|
switch(size) {\
|
||||||
|
case 1:\
|
||||||
|
v = *(const uint8_t *)ptr;\
|
||||||
|
break;\
|
||||||
|
case 2:\
|
||||||
|
v = *(const uint16_t *)ptr;\
|
||||||
|
break;\
|
||||||
|
default:\
|
||||||
|
v = *(const uint32_t *)ptr;\
|
||||||
|
break;\
|
||||||
|
}\
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static int alloc_table(VLC *vlc, int size)
|
||||||
|
{
|
||||||
|
int index;
|
||||||
|
index = vlc->table_size;
|
||||||
|
vlc->table_size += size;
|
||||||
|
if (vlc->table_size > vlc->table_allocated) {
|
||||||
|
DEBUGF("Tried to allocate past the end of a Huffman table: %d/%d\n",
|
||||||
|
vlc->table_allocated, vlc->table_allocated+(1 << vlc->bits));
|
||||||
|
vlc->table_allocated += (1 << vlc->bits);
|
||||||
|
if (!vlc->table)
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int build_table(VLC *vlc, int table_nb_bits,
|
||||||
|
int nb_codes,
|
||||||
|
const void *bits, int bits_wrap, int bits_size,
|
||||||
|
const void *codes, int codes_wrap, int codes_size,
|
||||||
|
uint32_t code_prefix, int n_prefix)
|
||||||
|
{
|
||||||
|
int i, j, k, n, table_size, table_index, nb, n1, index, code_prefix2;
|
||||||
|
uint32_t code;
|
||||||
|
int flags = 0;
|
||||||
|
VLC_TYPE (*table)[2];
|
||||||
|
|
||||||
|
table_size = 1 << table_nb_bits;
|
||||||
|
table_index = alloc_table(vlc, table_size);
|
||||||
|
#ifdef DEBUG_VLC
|
||||||
|
printf("new table index=%d size=%d code_prefix=%x n=%d\n",
|
||||||
|
table_index, table_size, code_prefix, n_prefix);
|
||||||
|
#endif
|
||||||
|
if (table_index < 0)
|
||||||
|
return -1;
|
||||||
|
table = &vlc->table[table_index];
|
||||||
|
|
||||||
|
for(i=0;i<table_size;i++) {
|
||||||
|
table[i][1] = 0; //bits
|
||||||
|
table[i][0] = -1; //codes
|
||||||
|
}
|
||||||
|
|
||||||
|
/* first pass: map codes and compute auxillary table sizes */
|
||||||
|
for(i=0;i<nb_codes;i++) {
|
||||||
|
GET_DATA(n, bits, i, bits_wrap, bits_size);
|
||||||
|
GET_DATA(code, codes, i, codes_wrap, codes_size);
|
||||||
|
/* we accept tables with holes */
|
||||||
|
if (n <= 0)
|
||||||
|
continue;
|
||||||
|
#if defined(DEBUG_VLC) && 0
|
||||||
|
printf("i=%d n=%d code=0x%x\n", i, n, code);
|
||||||
|
#endif
|
||||||
|
/* if code matches the prefix, it is in the table */
|
||||||
|
n -= n_prefix;
|
||||||
|
if(flags & INIT_VLC_LE)
|
||||||
|
code_prefix2= code & (n_prefix>=32 ? 0xffffffff : (uint32_t)(1 << n_prefix)-1);
|
||||||
|
else
|
||||||
|
code_prefix2= code >> n;
|
||||||
|
if (n > 0 && (int)code_prefix2 == (int)code_prefix) {
|
||||||
|
if (n <= table_nb_bits) {
|
||||||
|
/* no need to add another table */
|
||||||
|
j = (code << (table_nb_bits - n)) & (table_size - 1);
|
||||||
|
nb = 1 << (table_nb_bits - n);
|
||||||
|
for(k=0;k<nb;k++) {
|
||||||
|
if(flags & INIT_VLC_LE)
|
||||||
|
j = (code >> n_prefix) + (k<<n);
|
||||||
|
#ifdef DEBUG_VLC
|
||||||
|
av_log(NULL, 0, "%4x: code=%d n=%d\n",
|
||||||
|
j, i, n);
|
||||||
|
#endif
|
||||||
|
if (table[j][1] /*bits*/ != 0) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
table[j][1] = n; //bits
|
||||||
|
table[j][0] = i; //code
|
||||||
|
j++;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
n -= table_nb_bits;
|
||||||
|
j = (code >> ((flags & INIT_VLC_LE) ? n_prefix : n)) & ((1 << table_nb_bits) - 1);
|
||||||
|
#ifdef DEBUG_VLC
|
||||||
|
av_log(NULL, 0,"%4x: n=%d (subtable)\n",
|
||||||
|
j, n);
|
||||||
|
#endif
|
||||||
|
/* compute table size */
|
||||||
|
n1 = -table[j][1]; //bits
|
||||||
|
if (n > n1)
|
||||||
|
n1 = n;
|
||||||
|
table[j][1] = -n1; //bits
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* second pass : fill auxillary tables recursively */
|
||||||
|
for(i=0;i<table_size;i++) {
|
||||||
|
n = table[i][1]; //bits
|
||||||
|
if (n < 0) {
|
||||||
|
n = -n;
|
||||||
|
if (n > table_nb_bits) {
|
||||||
|
n = table_nb_bits;
|
||||||
|
table[i][1] = -n; //bits
|
||||||
|
}
|
||||||
|
index = build_table(vlc, n, nb_codes,
|
||||||
|
bits, bits_wrap, bits_size,
|
||||||
|
codes, codes_wrap, codes_size,
|
||||||
|
(flags & INIT_VLC_LE) ? (code_prefix | (i << n_prefix)) : ((code_prefix << table_nb_bits) | i),
|
||||||
|
n_prefix + table_nb_bits);
|
||||||
|
if (index < 0)
|
||||||
|
return -1;
|
||||||
|
/* note: realloc has been done, so reload tables */
|
||||||
|
table = &vlc->table[table_index];
|
||||||
|
table[i][0] = index; //code
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return table_index;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Build VLC decoding tables suitable for use with get_vlc().
|
||||||
|
|
||||||
|
'nb_bits' set thee decoding table size (2^nb_bits) entries. The
|
||||||
|
bigger it is, the faster is the decoding. But it should not be too
|
||||||
|
big to save memory and L1 cache. '9' is a good compromise.
|
||||||
|
|
||||||
|
'nb_codes' : number of vlcs codes
|
||||||
|
|
||||||
|
'bits' : table which gives the size (in bits) of each vlc code.
|
||||||
|
|
||||||
|
'codes' : table which gives the bit pattern of of each vlc code.
|
||||||
|
|
||||||
|
'xxx_wrap' : give the number of bytes between each entry of the
|
||||||
|
'bits' or 'codes' tables.
|
||||||
|
|
||||||
|
'xxx_size' : gives the number of bytes of each entry of the 'bits'
|
||||||
|
or 'codes' tables.
|
||||||
|
|
||||||
|
'wrap' and 'size' allows to use any memory configuration and types
|
||||||
|
(byte/word/long) to store the 'bits' and 'codes' tables.
|
||||||
|
|
||||||
|
'use_static' should be set to 1 for tables, which should be freed
|
||||||
|
with av_free_static(), 0 if free_vlc() will be used.
|
||||||
|
*/
|
||||||
|
int init_vlc(VLC *vlc, int nb_bits, int nb_codes,
|
||||||
|
const void *bits, int bits_wrap, int bits_size,
|
||||||
|
const void *codes, int codes_wrap, int codes_size,
|
||||||
|
int flags)
|
||||||
|
{
|
||||||
|
|
||||||
|
vlc->bits = nb_bits;
|
||||||
|
vlc->table_size = 0;
|
||||||
|
|
||||||
|
#ifdef DEBUG_VLC
|
||||||
|
printf("build table nb_codes=%d\n", nb_codes);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
if (build_table(vlc, nb_bits, nb_codes,
|
||||||
|
bits, bits_wrap, bits_size,
|
||||||
|
codes, codes_wrap, codes_size,
|
||||||
|
0, 0) < 0) {
|
||||||
|
//av_free(vlc->table);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
/* return flags to block gcc warning while allowing us to keep
|
||||||
|
* consistent with ffmpeg's function parameters
|
||||||
|
*/
|
||||||
|
return flags;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,989 @@
|
||||||
|
/*
|
||||||
|
* copyright (c) 2004 Michael Niedermayer <michaelni@gmx.at>
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file bitstream.h
|
||||||
|
* bitstream api header.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef BITSTREAM_H
|
||||||
|
#define BITSTREAM_H
|
||||||
|
|
||||||
|
#define av_always_inline inline
|
||||||
|
#define attribute_deprecated
|
||||||
|
|
||||||
|
#include <inttypes.h>
|
||||||
|
#include "ffmpeg_config.h"
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include "bswap.h"
|
||||||
|
|
||||||
|
extern const uint8_t ff_log2_tab[256];
|
||||||
|
|
||||||
|
|
||||||
|
/*misc utility functions added to make it compile */
|
||||||
|
static inline int av_log2(unsigned int v)
|
||||||
|
{
|
||||||
|
int n;
|
||||||
|
|
||||||
|
n = 0;
|
||||||
|
if (v & 0xffff0000) {
|
||||||
|
v >>= 16;
|
||||||
|
n += 16;
|
||||||
|
}
|
||||||
|
if (v & 0xff00) {
|
||||||
|
v >>= 8;
|
||||||
|
n += 8;
|
||||||
|
}
|
||||||
|
n += ff_log2_tab[v];
|
||||||
|
|
||||||
|
return n;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//#include "log.h"
|
||||||
|
|
||||||
|
#if defined(ALT_BITSTREAM_READER_LE) && !defined(ALT_BITSTREAM_READER)
|
||||||
|
#define ALT_BITSTREAM_READER
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define ALT_BITSTREAM_WRITER
|
||||||
|
//#define ALIGNED_BITSTREAM_WRITER
|
||||||
|
#if !defined(LIBMPEG2_BITSTREAM_READER) && !defined(A32_BITSTREAM_READER) && !defined(ALT_BITSTREAM_READER)
|
||||||
|
# ifdef ARCH_ARMV4L
|
||||||
|
# define A32_BITSTREAM_READER
|
||||||
|
# else
|
||||||
|
#define ALT_BITSTREAM_READER
|
||||||
|
//#define LIBMPEG2_BITSTREAM_READER
|
||||||
|
//#define A32_BITSTREAM_READER
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
#define LIBMPEG2_BITSTREAM_READER_HACK //add BERO
|
||||||
|
|
||||||
|
extern const uint8_t ff_reverse[256];
|
||||||
|
|
||||||
|
#if defined(ARCH_X86)
|
||||||
|
// avoid +32 for shift optimization (gcc should do that ...)
|
||||||
|
static inline int32_t NEG_SSR32( int32_t a, int8_t s){
|
||||||
|
asm ("sarl %1, %0\n\t"
|
||||||
|
: "+r" (a)
|
||||||
|
: "ic" ((uint8_t)(-s))
|
||||||
|
);
|
||||||
|
return a;
|
||||||
|
}
|
||||||
|
static inline uint32_t NEG_USR32(uint32_t a, int8_t s){
|
||||||
|
asm ("shrl %1, %0\n\t"
|
||||||
|
: "+r" (a)
|
||||||
|
: "ic" ((uint8_t)(-s))
|
||||||
|
);
|
||||||
|
return a;
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
# define NEG_SSR32(a,s) ((( int32_t)(a))>>(32-(s)))
|
||||||
|
# define NEG_USR32(a,s) (((uint32_t)(a))>>(32-(s)))
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* bit output */
|
||||||
|
|
||||||
|
/* buf and buf_end must be present and used by every alternative writer. */
|
||||||
|
typedef struct PutBitContext {
|
||||||
|
#ifdef ALT_BITSTREAM_WRITER
|
||||||
|
uint8_t *buf, *buf_end;
|
||||||
|
int index;
|
||||||
|
#else
|
||||||
|
uint32_t bit_buf;
|
||||||
|
int bit_left;
|
||||||
|
uint8_t *buf, *buf_ptr, *buf_end;
|
||||||
|
#endif
|
||||||
|
} PutBitContext;
|
||||||
|
|
||||||
|
static inline void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size)
|
||||||
|
{
|
||||||
|
if(buffer_size < 0) {
|
||||||
|
buffer_size = 0;
|
||||||
|
buffer = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
s->buf = buffer;
|
||||||
|
s->buf_end = s->buf + buffer_size;
|
||||||
|
#ifdef ALT_BITSTREAM_WRITER
|
||||||
|
s->index=0;
|
||||||
|
((uint32_t*)(s->buf))[0]=0;
|
||||||
|
// memset(buffer, 0, buffer_size);
|
||||||
|
#else
|
||||||
|
s->buf_ptr = s->buf;
|
||||||
|
s->bit_left=32;
|
||||||
|
s->bit_buf=0;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/* return the number of bits output */
|
||||||
|
static inline int put_bits_count(PutBitContext *s)
|
||||||
|
{
|
||||||
|
#ifdef ALT_BITSTREAM_WRITER
|
||||||
|
return s->index;
|
||||||
|
#else
|
||||||
|
return (s->buf_ptr - s->buf) * 8 + 32 - s->bit_left;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/* pad the end of the output stream with zeros */
|
||||||
|
static inline void flush_put_bits(PutBitContext *s)
|
||||||
|
{
|
||||||
|
#ifdef ALT_BITSTREAM_WRITER
|
||||||
|
align_put_bits(s);
|
||||||
|
#else
|
||||||
|
s->bit_buf<<= s->bit_left;
|
||||||
|
while (s->bit_left < 32) {
|
||||||
|
/* XXX: should test end of buffer */
|
||||||
|
*s->buf_ptr++=s->bit_buf >> 24;
|
||||||
|
s->bit_buf<<=8;
|
||||||
|
s->bit_left+=8;
|
||||||
|
}
|
||||||
|
s->bit_left=32;
|
||||||
|
s->bit_buf=0;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
void align_put_bits(PutBitContext *s);
|
||||||
|
void ff_put_string(PutBitContext * pbc, char *s, int put_zero);
|
||||||
|
|
||||||
|
/* bit input */
|
||||||
|
/* buffer, buffer_end and size_in_bits must be present and used by every reader */
|
||||||
|
typedef struct GetBitContext {
|
||||||
|
const uint8_t *buffer, *buffer_end;
|
||||||
|
#ifdef ALT_BITSTREAM_READER
|
||||||
|
int index;
|
||||||
|
#elif defined LIBMPEG2_BITSTREAM_READER
|
||||||
|
uint8_t *buffer_ptr;
|
||||||
|
uint32_t cache;
|
||||||
|
int bit_count;
|
||||||
|
#elif defined A32_BITSTREAM_READER
|
||||||
|
uint32_t *buffer_ptr;
|
||||||
|
uint32_t cache0;
|
||||||
|
uint32_t cache1;
|
||||||
|
int bit_count;
|
||||||
|
#endif
|
||||||
|
int size_in_bits;
|
||||||
|
} GetBitContext;
|
||||||
|
|
||||||
|
#define VLC_TYPE int16_t
|
||||||
|
|
||||||
|
typedef struct VLC {
|
||||||
|
int bits;
|
||||||
|
VLC_TYPE (*table)[2]; ///< code, bits
|
||||||
|
int table_size, table_allocated;
|
||||||
|
} VLC;
|
||||||
|
|
||||||
|
typedef struct RL_VLC_ELEM {
|
||||||
|
int16_t level;
|
||||||
|
int8_t len;
|
||||||
|
uint8_t run;
|
||||||
|
} RL_VLC_ELEM;
|
||||||
|
|
||||||
|
#if defined(ARCH_SPARC) || defined(ARCH_ARMV4L) || defined(ARCH_MIPS) || defined(ARCH_BFIN)
|
||||||
|
#define UNALIGNED_STORES_ARE_BAD
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* used to avoid missaligned exceptions on some archs (alpha, ...) */
|
||||||
|
#if defined(ARCH_X86) || defined(CPU_COLDFIRE)
|
||||||
|
# define unaligned16(a) (*(const uint16_t*)(a))
|
||||||
|
# define unaligned32(a) (*(const uint32_t*)(a))
|
||||||
|
# define unaligned64(a) (*(const uint64_t*)(a))
|
||||||
|
#else
|
||||||
|
# ifdef __GNUC__
|
||||||
|
# define unaligned(x) \
|
||||||
|
static inline uint##x##_t unaligned##x(const void *v) { \
|
||||||
|
struct Unaligned { \
|
||||||
|
uint##x##_t i; \
|
||||||
|
} __attribute__((packed)); \
|
||||||
|
\
|
||||||
|
return ((const struct Unaligned *) v)->i; \
|
||||||
|
}
|
||||||
|
# elif defined(__DECC)
|
||||||
|
# define unaligned(x) \
|
||||||
|
static inline uint##x##_t unaligned##x(const void *v) { \
|
||||||
|
return *(const __unaligned uint##x##_t *) v; \
|
||||||
|
}
|
||||||
|
# else
|
||||||
|
# define unaligned(x) \
|
||||||
|
static inline uint##x##_t unaligned##x(const void *v) { \
|
||||||
|
return *(const uint##x##_t *) v; \
|
||||||
|
}
|
||||||
|
# endif
|
||||||
|
unaligned(16)
|
||||||
|
unaligned(32)
|
||||||
|
unaligned(64)
|
||||||
|
#undef unaligned
|
||||||
|
#endif /* defined(ARCH_X86) */
|
||||||
|
|
||||||
|
#ifndef ALT_BITSTREAM_WRITER
|
||||||
|
static inline void put_bits(PutBitContext *s, int n, unsigned int value)
|
||||||
|
{
|
||||||
|
unsigned int bit_buf;
|
||||||
|
int bit_left;
|
||||||
|
|
||||||
|
// printf("put_bits=%d %x\n", n, value);
|
||||||
|
// assert(n == 32 || value < (1U << n));
|
||||||
|
|
||||||
|
bit_buf = s->bit_buf;
|
||||||
|
bit_left = s->bit_left;
|
||||||
|
|
||||||
|
// printf("n=%d value=%x cnt=%d buf=%x\n", n, value, bit_cnt, bit_buf);
|
||||||
|
/* XXX: optimize */
|
||||||
|
if (n < bit_left) {
|
||||||
|
bit_buf = (bit_buf<<n) | value;
|
||||||
|
bit_left-=n;
|
||||||
|
} else {
|
||||||
|
bit_buf<<=bit_left;
|
||||||
|
bit_buf |= value >> (n - bit_left);
|
||||||
|
#ifdef UNALIGNED_STORES_ARE_BAD
|
||||||
|
if (3 & (intptr_t) s->buf_ptr) {
|
||||||
|
s->buf_ptr[0] = bit_buf >> 24;
|
||||||
|
s->buf_ptr[1] = bit_buf >> 16;
|
||||||
|
s->buf_ptr[2] = bit_buf >> 8;
|
||||||
|
s->buf_ptr[3] = bit_buf ;
|
||||||
|
} else
|
||||||
|
#endif
|
||||||
|
*(uint32_t *)s->buf_ptr = be2me_32(bit_buf);
|
||||||
|
//printf("bitbuf = %08x\n", bit_buf);
|
||||||
|
s->buf_ptr+=4;
|
||||||
|
bit_left+=32 - n;
|
||||||
|
bit_buf = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
s->bit_buf = bit_buf;
|
||||||
|
s->bit_left = bit_left;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef ALT_BITSTREAM_WRITER
|
||||||
|
static inline void put_bits(PutBitContext *s, int n, unsigned int value)
|
||||||
|
{
|
||||||
|
# ifdef ALIGNED_BITSTREAM_WRITER
|
||||||
|
# if defined(ARCH_X86)
|
||||||
|
asm volatile(
|
||||||
|
"movl %0, %%ecx \n\t"
|
||||||
|
"xorl %%eax, %%eax \n\t"
|
||||||
|
"shrdl %%cl, %1, %%eax \n\t"
|
||||||
|
"shrl %%cl, %1 \n\t"
|
||||||
|
"movl %0, %%ecx \n\t"
|
||||||
|
"shrl $3, %%ecx \n\t"
|
||||||
|
"andl $0xFFFFFFFC, %%ecx \n\t"
|
||||||
|
"bswapl %1 \n\t"
|
||||||
|
"orl %1, (%2, %%ecx) \n\t"
|
||||||
|
"bswapl %%eax \n\t"
|
||||||
|
"addl %3, %0 \n\t"
|
||||||
|
"movl %%eax, 4(%2, %%ecx) \n\t"
|
||||||
|
: "=&r" (s->index), "=&r" (value)
|
||||||
|
: "r" (s->buf), "r" (n), "0" (s->index), "1" (value<<(-n))
|
||||||
|
: "%eax", "%ecx"
|
||||||
|
);
|
||||||
|
# else
|
||||||
|
int index= s->index;
|
||||||
|
uint32_t *ptr= ((uint32_t *)s->buf)+(index>>5);
|
||||||
|
|
||||||
|
value<<= 32-n;
|
||||||
|
|
||||||
|
ptr[0] |= be2me_32(value>>(index&31));
|
||||||
|
ptr[1] = be2me_32(value<<(32-(index&31)));
|
||||||
|
//if(n>24) printf("%d %d\n", n, value);
|
||||||
|
index+= n;
|
||||||
|
s->index= index;
|
||||||
|
# endif
|
||||||
|
# else //ALIGNED_BITSTREAM_WRITER
|
||||||
|
# if defined(ARCH_X86)
|
||||||
|
asm volatile(
|
||||||
|
"movl $7, %%ecx \n\t"
|
||||||
|
"andl %0, %%ecx \n\t"
|
||||||
|
"addl %3, %%ecx \n\t"
|
||||||
|
"negl %%ecx \n\t"
|
||||||
|
"shll %%cl, %1 \n\t"
|
||||||
|
"bswapl %1 \n\t"
|
||||||
|
"movl %0, %%ecx \n\t"
|
||||||
|
"shrl $3, %%ecx \n\t"
|
||||||
|
"orl %1, (%%ecx, %2) \n\t"
|
||||||
|
"addl %3, %0 \n\t"
|
||||||
|
"movl $0, 4(%%ecx, %2) \n\t"
|
||||||
|
: "=&r" (s->index), "=&r" (value)
|
||||||
|
: "r" (s->buf), "r" (n), "0" (s->index), "1" (value)
|
||||||
|
: "%ecx"
|
||||||
|
);
|
||||||
|
# else
|
||||||
|
int index= s->index;
|
||||||
|
uint32_t *ptr= (uint32_t*)(((uint8_t *)s->buf)+(index>>3));
|
||||||
|
|
||||||
|
ptr[0] |= be2me_32(value<<(32-n-(index&7) ));
|
||||||
|
ptr[1] = 0;
|
||||||
|
//if(n>24) printf("%d %d\n", n, value);
|
||||||
|
index+= n;
|
||||||
|
s->index= index;
|
||||||
|
# endif
|
||||||
|
# endif //!ALIGNED_BITSTREAM_WRITER
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
static inline uint8_t* pbBufPtr(PutBitContext *s)
|
||||||
|
{
|
||||||
|
#ifdef ALT_BITSTREAM_WRITER
|
||||||
|
return s->buf + (s->index>>3);
|
||||||
|
#else
|
||||||
|
return s->buf_ptr;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* PutBitContext must be flushed & aligned to a byte boundary before calling this.
|
||||||
|
*/
|
||||||
|
static inline void skip_put_bytes(PutBitContext *s, int n){
|
||||||
|
// assert((put_bits_count(s)&7)==0);
|
||||||
|
#ifdef ALT_BITSTREAM_WRITER
|
||||||
|
FIXME may need some cleaning of the buffer
|
||||||
|
s->index += n<<3;
|
||||||
|
#else
|
||||||
|
// assert(s->bit_left==32);
|
||||||
|
s->buf_ptr += n;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* skips the given number of bits.
|
||||||
|
* must only be used if the actual values in the bitstream dont matter
|
||||||
|
*/
|
||||||
|
static inline void skip_put_bits(PutBitContext *s, int n){
|
||||||
|
#ifdef ALT_BITSTREAM_WRITER
|
||||||
|
s->index += n;
|
||||||
|
#else
|
||||||
|
s->bit_left -= n;
|
||||||
|
s->buf_ptr-= s->bit_left>>5;
|
||||||
|
s->bit_left &= 31;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Changes the end of the buffer.
|
||||||
|
*/
|
||||||
|
static inline void set_put_bits_buffer_size(PutBitContext *s, int size){
|
||||||
|
s->buf_end= s->buf + size;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Bitstream reader API docs:
|
||||||
|
name
|
||||||
|
abritary name which is used as prefix for the internal variables
|
||||||
|
|
||||||
|
gb
|
||||||
|
getbitcontext
|
||||||
|
|
||||||
|
OPEN_READER(name, gb)
|
||||||
|
loads gb into local variables
|
||||||
|
|
||||||
|
CLOSE_READER(name, gb)
|
||||||
|
stores local vars in gb
|
||||||
|
|
||||||
|
UPDATE_CACHE(name, gb)
|
||||||
|
refills the internal cache from the bitstream
|
||||||
|
after this call at least MIN_CACHE_BITS will be available,
|
||||||
|
|
||||||
|
GET_CACHE(name, gb)
|
||||||
|
will output the contents of the internal cache, next bit is MSB of 32 or 64 bit (FIXME 64bit)
|
||||||
|
|
||||||
|
SHOW_UBITS(name, gb, num)
|
||||||
|
will return the next num bits
|
||||||
|
|
||||||
|
SHOW_SBITS(name, gb, num)
|
||||||
|
will return the next num bits and do sign extension
|
||||||
|
|
||||||
|
SKIP_BITS(name, gb, num)
|
||||||
|
will skip over the next num bits
|
||||||
|
note, this is equivalent to SKIP_CACHE; SKIP_COUNTER
|
||||||
|
|
||||||
|
SKIP_CACHE(name, gb, num)
|
||||||
|
will remove the next num bits from the cache (note SKIP_COUNTER MUST be called before UPDATE_CACHE / CLOSE_READER)
|
||||||
|
|
||||||
|
SKIP_COUNTER(name, gb, num)
|
||||||
|
will increment the internal bit counter (see SKIP_CACHE & SKIP_BITS)
|
||||||
|
|
||||||
|
LAST_SKIP_CACHE(name, gb, num)
|
||||||
|
will remove the next num bits from the cache if it is needed for UPDATE_CACHE otherwise it will do nothing
|
||||||
|
|
||||||
|
LAST_SKIP_BITS(name, gb, num)
|
||||||
|
is equivalent to SKIP_LAST_CACHE; SKIP_COUNTER
|
||||||
|
|
||||||
|
for examples see get_bits, show_bits, skip_bits, get_vlc
|
||||||
|
*/
|
||||||
|
|
||||||
|
static inline int unaligned32_be(const void *v)
|
||||||
|
{
|
||||||
|
#ifdef CONFIG_ALIGN
|
||||||
|
const uint8_t *p=v;
|
||||||
|
return (((p[0]<<8) | p[1])<<16) | (p[2]<<8) | (p[3]);
|
||||||
|
#else
|
||||||
|
return be2me_32( unaligned32(v)); //original
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline int unaligned32_le(const void *v)
|
||||||
|
{
|
||||||
|
#ifdef CONFIG_ALIGN
|
||||||
|
const uint8_t *p=v;
|
||||||
|
return (((p[3]<<8) | p[2])<<16) | (p[1]<<8) | (p[0]);
|
||||||
|
#else
|
||||||
|
return le2me_32( unaligned32(v)); //original
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifdef ALT_BITSTREAM_READER
|
||||||
|
# define MIN_CACHE_BITS 25
|
||||||
|
|
||||||
|
# define OPEN_READER(name, gb)\
|
||||||
|
int name##_index= (gb)->index;\
|
||||||
|
int name##_cache= 0;\
|
||||||
|
|
||||||
|
# define CLOSE_READER(name, gb)\
|
||||||
|
(gb)->index= name##_index;\
|
||||||
|
|
||||||
|
# ifdef ALT_BITSTREAM_READER_LE
|
||||||
|
# define UPDATE_CACHE(name, gb)\
|
||||||
|
name##_cache= unaligned32_le( ((const uint8_t *)(gb)->buffer)+(name##_index>>3) ) >> (name##_index&0x07);\
|
||||||
|
|
||||||
|
# define SKIP_CACHE(name, gb, num)\
|
||||||
|
name##_cache >>= (num);
|
||||||
|
# else
|
||||||
|
# define UPDATE_CACHE(name, gb)\
|
||||||
|
name##_cache= unaligned32_be( ((const uint8_t *)(gb)->buffer)+(name##_index>>3) ) << (name##_index&0x07);\
|
||||||
|
|
||||||
|
# define SKIP_CACHE(name, gb, num)\
|
||||||
|
name##_cache <<= (num);
|
||||||
|
# endif
|
||||||
|
|
||||||
|
// FIXME name?
|
||||||
|
# define SKIP_COUNTER(name, gb, num)\
|
||||||
|
name##_index += (num);\
|
||||||
|
|
||||||
|
# define SKIP_BITS(name, gb, num)\
|
||||||
|
{\
|
||||||
|
SKIP_CACHE(name, gb, num)\
|
||||||
|
SKIP_COUNTER(name, gb, num)\
|
||||||
|
}\
|
||||||
|
|
||||||
|
# define LAST_SKIP_BITS(name, gb, num) SKIP_COUNTER(name, gb, num)
|
||||||
|
# define LAST_SKIP_CACHE(name, gb, num) ;
|
||||||
|
|
||||||
|
# ifdef ALT_BITSTREAM_READER_LE
|
||||||
|
# define SHOW_UBITS(name, gb, num)\
|
||||||
|
((name##_cache) & (NEG_USR32(0xffffffff,num)))
|
||||||
|
|
||||||
|
# define SHOW_SBITS(name, gb, num)\
|
||||||
|
NEG_SSR32((name##_cache)<<(32-(num)), num)
|
||||||
|
# else
|
||||||
|
# define SHOW_UBITS(name, gb, num)\
|
||||||
|
NEG_USR32(name##_cache, num)
|
||||||
|
|
||||||
|
# define SHOW_SBITS(name, gb, num)\
|
||||||
|
NEG_SSR32(name##_cache, num)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# define GET_CACHE(name, gb)\
|
||||||
|
((uint32_t)name##_cache)
|
||||||
|
|
||||||
|
static inline int get_bits_count(GetBitContext *s){
|
||||||
|
return s->index;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void skip_bits_long(GetBitContext *s, int n){
|
||||||
|
s->index += n;
|
||||||
|
}
|
||||||
|
|
||||||
|
#elif defined LIBMPEG2_BITSTREAM_READER
|
||||||
|
//libmpeg2 like reader
|
||||||
|
|
||||||
|
# define MIN_CACHE_BITS 17
|
||||||
|
|
||||||
|
# define OPEN_READER(name, gb)\
|
||||||
|
int name##_bit_count=(gb)->bit_count;\
|
||||||
|
int name##_cache= (gb)->cache;\
|
||||||
|
uint8_t * name##_buffer_ptr=(gb)->buffer_ptr;\
|
||||||
|
|
||||||
|
# define CLOSE_READER(name, gb)\
|
||||||
|
(gb)->bit_count= name##_bit_count;\
|
||||||
|
(gb)->cache= name##_cache;\
|
||||||
|
(gb)->buffer_ptr= name##_buffer_ptr;\
|
||||||
|
|
||||||
|
#ifdef LIBMPEG2_BITSTREAM_READER_HACK
|
||||||
|
|
||||||
|
# define UPDATE_CACHE(name, gb)\
|
||||||
|
if(name##_bit_count >= 0){\
|
||||||
|
name##_cache+= (int)be2me_16(*(uint16_t*)name##_buffer_ptr) << name##_bit_count;\
|
||||||
|
name##_buffer_ptr += 2;\
|
||||||
|
name##_bit_count-= 16;\
|
||||||
|
}\
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
# define UPDATE_CACHE(name, gb)\
|
||||||
|
if(name##_bit_count >= 0){\
|
||||||
|
name##_cache+= ((name##_buffer_ptr[0]<<8) + name##_buffer_ptr[1]) << name##_bit_count;\
|
||||||
|
name##_buffer_ptr+=2;\
|
||||||
|
name##_bit_count-= 16;\
|
||||||
|
}\
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
# define SKIP_CACHE(name, gb, num)\
|
||||||
|
name##_cache <<= (num);\
|
||||||
|
|
||||||
|
# define SKIP_COUNTER(name, gb, num)\
|
||||||
|
name##_bit_count += (num);\
|
||||||
|
|
||||||
|
# define SKIP_BITS(name, gb, num)\
|
||||||
|
{\
|
||||||
|
SKIP_CACHE(name, gb, num)\
|
||||||
|
SKIP_COUNTER(name, gb, num)\
|
||||||
|
}\
|
||||||
|
|
||||||
|
# define LAST_SKIP_BITS(name, gb, num) SKIP_BITS(name, gb, num)
|
||||||
|
# define LAST_SKIP_CACHE(name, gb, num) SKIP_CACHE(name, gb, num)
|
||||||
|
|
||||||
|
# define SHOW_UBITS(name, gb, num)\
|
||||||
|
NEG_USR32(name##_cache, num)
|
||||||
|
|
||||||
|
# define SHOW_SBITS(name, gb, num)\
|
||||||
|
NEG_SSR32(name##_cache, num)
|
||||||
|
|
||||||
|
# define GET_CACHE(name, gb)\
|
||||||
|
((uint32_t)name##_cache)
|
||||||
|
|
||||||
|
static inline int get_bits_count(GetBitContext *s){
|
||||||
|
return (s->buffer_ptr - s->buffer)*8 - 16 + s->bit_count;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void skip_bits_long(GetBitContext *s, int n){
|
||||||
|
OPEN_READER(re, s)
|
||||||
|
re_bit_count += n;
|
||||||
|
re_buffer_ptr += 2*(re_bit_count>>4);
|
||||||
|
re_bit_count &= 15;
|
||||||
|
re_cache = ((re_buffer_ptr[-2]<<8) + re_buffer_ptr[-1]) << (16+re_bit_count);
|
||||||
|
UPDATE_CACHE(re, s)
|
||||||
|
CLOSE_READER(re, s)
|
||||||
|
}
|
||||||
|
|
||||||
|
#elif defined A32_BITSTREAM_READER
|
||||||
|
|
||||||
|
# define MIN_CACHE_BITS 32
|
||||||
|
|
||||||
|
# define OPEN_READER(name, gb)\
|
||||||
|
int name##_bit_count=(gb)->bit_count;\
|
||||||
|
uint32_t name##_cache0= (gb)->cache0;\
|
||||||
|
uint32_t name##_cache1= (gb)->cache1;\
|
||||||
|
uint32_t * name##_buffer_ptr=(gb)->buffer_ptr;\
|
||||||
|
|
||||||
|
# define CLOSE_READER(name, gb)\
|
||||||
|
(gb)->bit_count= name##_bit_count;\
|
||||||
|
(gb)->cache0= name##_cache0;\
|
||||||
|
(gb)->cache1= name##_cache1;\
|
||||||
|
(gb)->buffer_ptr= name##_buffer_ptr;\
|
||||||
|
|
||||||
|
# define UPDATE_CACHE(name, gb)\
|
||||||
|
if(name##_bit_count > 0){\
|
||||||
|
const uint32_t next= be2me_32( *name##_buffer_ptr );\
|
||||||
|
name##_cache0 |= NEG_USR32(next,name##_bit_count);\
|
||||||
|
name##_cache1 |= next<<name##_bit_count;\
|
||||||
|
name##_buffer_ptr++;\
|
||||||
|
name##_bit_count-= 32;\
|
||||||
|
}\
|
||||||
|
|
||||||
|
#if defined(ARCH_X86)
|
||||||
|
# define SKIP_CACHE(name, gb, num)\
|
||||||
|
asm(\
|
||||||
|
"shldl %2, %1, %0 \n\t"\
|
||||||
|
"shll %2, %1 \n\t"\
|
||||||
|
: "+r" (name##_cache0), "+r" (name##_cache1)\
|
||||||
|
: "Ic" ((uint8_t)(num))\
|
||||||
|
);
|
||||||
|
#else
|
||||||
|
# define SKIP_CACHE(name, gb, num)\
|
||||||
|
name##_cache0 <<= (num);\
|
||||||
|
name##_cache0 |= NEG_USR32(name##_cache1,num);\
|
||||||
|
name##_cache1 <<= (num);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
# define SKIP_COUNTER(name, gb, num)\
|
||||||
|
name##_bit_count += (num);\
|
||||||
|
|
||||||
|
# define SKIP_BITS(name, gb, num)\
|
||||||
|
{\
|
||||||
|
SKIP_CACHE(name, gb, num)\
|
||||||
|
SKIP_COUNTER(name, gb, num)\
|
||||||
|
}\
|
||||||
|
|
||||||
|
# define LAST_SKIP_BITS(name, gb, num) SKIP_BITS(name, gb, num)
|
||||||
|
# define LAST_SKIP_CACHE(name, gb, num) SKIP_CACHE(name, gb, num)
|
||||||
|
|
||||||
|
# define SHOW_UBITS(name, gb, num)\
|
||||||
|
NEG_USR32(name##_cache0, num)
|
||||||
|
|
||||||
|
# define SHOW_SBITS(name, gb, num)\
|
||||||
|
NEG_SSR32(name##_cache0, num)
|
||||||
|
|
||||||
|
# define GET_CACHE(name, gb)\
|
||||||
|
(name##_cache0)
|
||||||
|
|
||||||
|
static inline int get_bits_count(GetBitContext *s){
|
||||||
|
return ((uint8_t*)s->buffer_ptr - s->buffer)*8 - 32 + s->bit_count;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void skip_bits_long(GetBitContext *s, int n){
|
||||||
|
OPEN_READER(re, s)
|
||||||
|
re_bit_count += n;
|
||||||
|
re_buffer_ptr += re_bit_count>>5;
|
||||||
|
re_bit_count &= 31;
|
||||||
|
re_cache0 = be2me_32( re_buffer_ptr[-1] ) << re_bit_count;
|
||||||
|
re_cache1 = 0;
|
||||||
|
UPDATE_CACHE(re, s)
|
||||||
|
CLOSE_READER(re, s)
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* read mpeg1 dc style vlc (sign bit + mantisse with no MSB).
|
||||||
|
* if MSB not set it is negative
|
||||||
|
* @param n length in bits
|
||||||
|
* @author BERO
|
||||||
|
*/
|
||||||
|
static inline int get_xbits(GetBitContext *s, int n){
|
||||||
|
register int sign;
|
||||||
|
register int32_t cache;
|
||||||
|
OPEN_READER(re, s)
|
||||||
|
UPDATE_CACHE(re, s)
|
||||||
|
cache = GET_CACHE(re,s);
|
||||||
|
sign=(~cache)>>31;
|
||||||
|
LAST_SKIP_BITS(re, s, n)
|
||||||
|
CLOSE_READER(re, s)
|
||||||
|
return (NEG_USR32(sign ^ cache, n) ^ sign) - sign;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline int get_sbits(GetBitContext *s, int n){
|
||||||
|
register int tmp;
|
||||||
|
OPEN_READER(re, s)
|
||||||
|
UPDATE_CACHE(re, s)
|
||||||
|
tmp= SHOW_SBITS(re, s, n);
|
||||||
|
LAST_SKIP_BITS(re, s, n)
|
||||||
|
CLOSE_READER(re, s)
|
||||||
|
return tmp;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* reads 1-17 bits.
|
||||||
|
* Note, the alt bitstream reader can read up to 25 bits, but the libmpeg2 reader can't
|
||||||
|
*/
|
||||||
|
static inline unsigned int get_bits(GetBitContext *s, int n){
|
||||||
|
register int tmp;
|
||||||
|
OPEN_READER(re, s)
|
||||||
|
UPDATE_CACHE(re, s)
|
||||||
|
tmp= SHOW_UBITS(re, s, n);
|
||||||
|
LAST_SKIP_BITS(re, s, n)
|
||||||
|
CLOSE_READER(re, s)
|
||||||
|
return tmp;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* shows 1-17 bits.
|
||||||
|
* Note, the alt bitstream reader can read up to 25 bits, but the libmpeg2 reader can't
|
||||||
|
*/
|
||||||
|
static inline unsigned int show_bits(GetBitContext *s, int n){
|
||||||
|
register int tmp;
|
||||||
|
OPEN_READER(re, s)
|
||||||
|
UPDATE_CACHE(re, s)
|
||||||
|
tmp= SHOW_UBITS(re, s, n);
|
||||||
|
// CLOSE_READER(re, s)
|
||||||
|
return tmp;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void skip_bits(GetBitContext *s, int n){
|
||||||
|
//Note gcc seems to optimize this to s->index+=n for the ALT_READER :))
|
||||||
|
OPEN_READER(re, s)
|
||||||
|
UPDATE_CACHE(re, s)
|
||||||
|
LAST_SKIP_BITS(re, s, n)
|
||||||
|
CLOSE_READER(re, s)
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline unsigned int get_bits1(GetBitContext *s){
|
||||||
|
#ifdef ALT_BITSTREAM_READER
|
||||||
|
int index= s->index;
|
||||||
|
uint8_t result= s->buffer[ index>>3 ];
|
||||||
|
#ifdef ALT_BITSTREAM_READER_LE
|
||||||
|
result>>= (index&0x07);
|
||||||
|
result&= 1;
|
||||||
|
#else
|
||||||
|
result<<= (index&0x07);
|
||||||
|
result>>= 8 - 1;
|
||||||
|
#endif
|
||||||
|
index++;
|
||||||
|
s->index= index;
|
||||||
|
|
||||||
|
return result;
|
||||||
|
#else
|
||||||
|
return get_bits(s, 1);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline unsigned int show_bits1(GetBitContext *s){
|
||||||
|
return show_bits(s, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void skip_bits1(GetBitContext *s){
|
||||||
|
skip_bits(s, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* reads 0-32 bits.
|
||||||
|
*/
|
||||||
|
static inline unsigned int get_bits_long(GetBitContext *s, int n){
|
||||||
|
if(n<=17) return get_bits(s, n);
|
||||||
|
else{
|
||||||
|
#ifdef ALT_BITSTREAM_READER_LE
|
||||||
|
int ret= get_bits(s, 16);
|
||||||
|
return ret | (get_bits(s, n-16) << 16);
|
||||||
|
#else
|
||||||
|
int ret= get_bits(s, 16) << (n-16);
|
||||||
|
return ret | get_bits(s, n-16);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* shows 0-32 bits.
|
||||||
|
*/
|
||||||
|
static inline unsigned int show_bits_long(GetBitContext *s, int n){
|
||||||
|
if(n<=17) return show_bits(s, n);
|
||||||
|
else{
|
||||||
|
GetBitContext gb= *s;
|
||||||
|
int ret= get_bits_long(s, n);
|
||||||
|
*s= gb;
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
static inline int check_marker(GetBitContext *s, const char *msg)
|
||||||
|
{
|
||||||
|
int bit= get_bits1(s);
|
||||||
|
if(!bit)
|
||||||
|
av_log(NULL, AV_LOG_INFO, "Marker bit missing %s\n", msg);
|
||||||
|
|
||||||
|
return bit;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* init GetBitContext.
|
||||||
|
* @param buffer bitstream buffer, must be FF_INPUT_BUFFER_PADDING_SIZE bytes larger then the actual read bits
|
||||||
|
* because some optimized bitstream readers read 32 or 64 bit at once and could read over the end
|
||||||
|
* @param bit_size the size of the buffer in bits
|
||||||
|
*/
|
||||||
|
static inline void init_get_bits(GetBitContext *s,
|
||||||
|
const uint8_t *buffer, int bit_size)
|
||||||
|
{
|
||||||
|
int buffer_size= (bit_size+7)>>3;
|
||||||
|
if(buffer_size < 0 || bit_size < 0) {
|
||||||
|
buffer_size = bit_size = 0;
|
||||||
|
buffer = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
s->buffer= buffer;
|
||||||
|
s->size_in_bits= bit_size;
|
||||||
|
s->buffer_end= buffer + buffer_size;
|
||||||
|
#ifdef ALT_BITSTREAM_READER
|
||||||
|
s->index=0;
|
||||||
|
#elif defined LIBMPEG2_BITSTREAM_READER
|
||||||
|
s->buffer_ptr = (uint8_t*)((intptr_t)buffer&(~1));
|
||||||
|
s->bit_count = 16 + 8*((intptr_t)buffer&1);
|
||||||
|
skip_bits_long(s, 0);
|
||||||
|
#elif defined A32_BITSTREAM_READER
|
||||||
|
s->buffer_ptr = (uint32_t*)((intptr_t)buffer&(~3));
|
||||||
|
s->bit_count = 32 + 8*((intptr_t)buffer&3);
|
||||||
|
skip_bits_long(s, 0);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void align_get_bits(GetBitContext *s)
|
||||||
|
{
|
||||||
|
int n= (-get_bits_count(s)) & 7;
|
||||||
|
if(n) skip_bits(s, n);
|
||||||
|
}
|
||||||
|
|
||||||
|
int init_vlc(VLC *vlc, int nb_bits, int nb_codes,
|
||||||
|
const void *bits, int bits_wrap, int bits_size,
|
||||||
|
const void *codes, int codes_wrap, int codes_size,
|
||||||
|
int flags);
|
||||||
|
#define INIT_VLC_USE_STATIC 1
|
||||||
|
#define INIT_VLC_LE 2
|
||||||
|
void free_vlc(VLC *vlc);
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* if the vlc code is invalid and max_depth=1 than no bits will be removed
|
||||||
|
* if the vlc code is invalid and max_depth>1 than the number of bits removed
|
||||||
|
* is undefined
|
||||||
|
*/
|
||||||
|
#define GET_VLC(code, name, gb, table, bits, max_depth)\
|
||||||
|
{\
|
||||||
|
int n, index, nb_bits;\
|
||||||
|
\
|
||||||
|
index= SHOW_UBITS(name, gb, bits);\
|
||||||
|
code = table[index][0];\
|
||||||
|
n = table[index][1];\
|
||||||
|
\
|
||||||
|
if(max_depth > 1 && n < 0){\
|
||||||
|
LAST_SKIP_BITS(name, gb, bits)\
|
||||||
|
UPDATE_CACHE(name, gb)\
|
||||||
|
\
|
||||||
|
nb_bits = -n;\
|
||||||
|
\
|
||||||
|
index= SHOW_UBITS(name, gb, nb_bits) + code;\
|
||||||
|
code = table[index][0];\
|
||||||
|
n = table[index][1];\
|
||||||
|
if(max_depth > 2 && n < 0){\
|
||||||
|
LAST_SKIP_BITS(name, gb, nb_bits)\
|
||||||
|
UPDATE_CACHE(name, gb)\
|
||||||
|
\
|
||||||
|
nb_bits = -n;\
|
||||||
|
\
|
||||||
|
index= SHOW_UBITS(name, gb, nb_bits) + code;\
|
||||||
|
code = table[index][0];\
|
||||||
|
n = table[index][1];\
|
||||||
|
}\
|
||||||
|
}\
|
||||||
|
SKIP_BITS(name, gb, n)\
|
||||||
|
}
|
||||||
|
|
||||||
|
#define GET_RL_VLC(level, run, name, gb, table, bits, max_depth, need_update)\
|
||||||
|
{\
|
||||||
|
int n, index, nb_bits;\
|
||||||
|
\
|
||||||
|
index= SHOW_UBITS(name, gb, bits);\
|
||||||
|
level = table[index].level;\
|
||||||
|
n = table[index].len;\
|
||||||
|
\
|
||||||
|
if(max_depth > 1 && n < 0){\
|
||||||
|
SKIP_BITS(name, gb, bits)\
|
||||||
|
if(need_update){\
|
||||||
|
UPDATE_CACHE(name, gb)\
|
||||||
|
}\
|
||||||
|
\
|
||||||
|
nb_bits = -n;\
|
||||||
|
\
|
||||||
|
index= SHOW_UBITS(name, gb, nb_bits) + level;\
|
||||||
|
level = table[index].level;\
|
||||||
|
n = table[index].len;\
|
||||||
|
}\
|
||||||
|
run= table[index].run;\
|
||||||
|
SKIP_BITS(name, gb, n)\
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* parses a vlc code, faster then get_vlc()
|
||||||
|
* @param bits is the number of bits which will be read at once, must be
|
||||||
|
* identical to nb_bits in init_vlc()
|
||||||
|
* @param max_depth is the number of times bits bits must be read to completely
|
||||||
|
* read the longest vlc code
|
||||||
|
* = (max_vlc_length + bits - 1) / bits
|
||||||
|
*/
|
||||||
|
static av_always_inline int get_vlc2(GetBitContext *s, VLC_TYPE (*table)[2],
|
||||||
|
int bits, int max_depth)
|
||||||
|
{
|
||||||
|
int code;
|
||||||
|
|
||||||
|
OPEN_READER(re, s)
|
||||||
|
UPDATE_CACHE(re, s)
|
||||||
|
|
||||||
|
GET_VLC(code, re, s, table, bits, max_depth)
|
||||||
|
|
||||||
|
CLOSE_READER(re, s)
|
||||||
|
return code;
|
||||||
|
}
|
||||||
|
|
||||||
|
//#define TRACE
|
||||||
|
|
||||||
|
#ifdef TRACE
|
||||||
|
static inline void print_bin(int bits, int n){
|
||||||
|
int i;
|
||||||
|
|
||||||
|
for(i=n-1; i>=0; i--){
|
||||||
|
av_log(NULL, AV_LOG_DEBUG, "%d", (bits>>i)&1);
|
||||||
|
}
|
||||||
|
for(i=n; i<24; i++)
|
||||||
|
av_log(NULL, AV_LOG_DEBUG, " ");
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline int get_bits_trace(GetBitContext *s, int n, char *file, const char *func, int line){
|
||||||
|
int r= get_bits(s, n);
|
||||||
|
|
||||||
|
print_bin(r, n);
|
||||||
|
av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d bit @%5d in %s %s:%d\n", r, n, r, get_bits_count(s)-n, file, func, line);
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
static inline int get_vlc_trace(GetBitContext *s, VLC_TYPE (*table)[2], int bits, int max_depth, char *file, const char *func, int line){
|
||||||
|
int show= show_bits(s, 24);
|
||||||
|
int pos= get_bits_count(s);
|
||||||
|
int r= get_vlc2(s, table, bits, max_depth);
|
||||||
|
int len= get_bits_count(s) - pos;
|
||||||
|
int bits2= show>>(24-len);
|
||||||
|
|
||||||
|
print_bin(bits2, len);
|
||||||
|
|
||||||
|
av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d vlc @%5d in %s %s:%d\n", bits2, len, r, pos, file, func, line);
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
static inline int get_xbits_trace(GetBitContext *s, int n, char *file, const char *func, int line){
|
||||||
|
int show= show_bits(s, n);
|
||||||
|
int r= get_xbits(s, n);
|
||||||
|
|
||||||
|
print_bin(show, n);
|
||||||
|
av_log(NULL, AV_LOG_DEBUG, "%5d %2d %3d xbt @%5d in %s %s:%d\n", show, n, r, get_bits_count(s)-n, file, func, line);
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define get_bits(s, n) get_bits_trace(s, n, __FILE__, __PRETTY_FUNCTION__, __LINE__)
|
||||||
|
#define get_bits1(s) get_bits_trace(s, 1, __FILE__, __PRETTY_FUNCTION__, __LINE__)
|
||||||
|
#define get_xbits(s, n) get_xbits_trace(s, n, __FILE__, __PRETTY_FUNCTION__, __LINE__)
|
||||||
|
#define get_vlc(s, vlc) get_vlc_trace(s, (vlc)->table, (vlc)->bits, 3, __FILE__, __PRETTY_FUNCTION__, __LINE__)
|
||||||
|
#define get_vlc2(s, tab, bits, max) get_vlc_trace(s, tab, bits, max, __FILE__, __PRETTY_FUNCTION__, __LINE__)
|
||||||
|
|
||||||
|
#define tprintf(p, ...) av_log(p, AV_LOG_DEBUG, __VA_ARGS__)
|
||||||
|
|
||||||
|
#else //TRACE
|
||||||
|
#define tprintf(p, ...) {}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static inline int decode012(GetBitContext *gb){
|
||||||
|
int n;
|
||||||
|
n = get_bits1(gb);
|
||||||
|
if (n == 0)
|
||||||
|
return 0;
|
||||||
|
else
|
||||||
|
return get_bits1(gb) + 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* BITSTREAM_H */
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,149 @@
|
||||||
|
/*
|
||||||
|
* WMA compatible decoder
|
||||||
|
* Copyright (c) 2002 The FFmpeg Project.
|
||||||
|
*
|
||||||
|
* This library 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 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library 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 this library; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _WMADEC_H
|
||||||
|
#define _WMADEC_H
|
||||||
|
|
||||||
|
#include "asf.h"
|
||||||
|
#include "wmabitstream.h" /* For GetBitContext */
|
||||||
|
#include "types.h"
|
||||||
|
|
||||||
|
//#define TRACE
|
||||||
|
/* size of blocks */
|
||||||
|
#define BLOCK_MIN_BITS 7
|
||||||
|
#define BLOCK_MAX_BITS 11
|
||||||
|
#define BLOCK_MAX_SIZE (1 << BLOCK_MAX_BITS)
|
||||||
|
|
||||||
|
#define BLOCK_NB_SIZES (BLOCK_MAX_BITS - BLOCK_MIN_BITS + 1)
|
||||||
|
|
||||||
|
/* XXX: find exact max size */
|
||||||
|
#define HIGH_BAND_MAX_SIZE 16
|
||||||
|
|
||||||
|
#define NB_LSP_COEFS 10
|
||||||
|
|
||||||
|
/* XXX: is it a suitable value ? */
|
||||||
|
#define MAX_CODED_SUPERFRAME_SIZE 16384
|
||||||
|
|
||||||
|
#define M_PI 3.14159265358979323846
|
||||||
|
|
||||||
|
#define M_PI_F 0x3243f // in fixed 32 format
|
||||||
|
#define TWO_M_PI_F 0x6487f //in fixed 32
|
||||||
|
|
||||||
|
#define MAX_CHANNELS 2
|
||||||
|
|
||||||
|
#define NOISE_TAB_SIZE 8192
|
||||||
|
|
||||||
|
#define LSP_POW_BITS 7
|
||||||
|
|
||||||
|
/*define IRAM for targets with 48k/80k IRAM split*/
|
||||||
|
#ifndef IBSS_ATTR_WMA_LARGE_IRAM
|
||||||
|
#if (CONFIG_CPU == PP5022) || (CONFIG_CPU == PP5024)
|
||||||
|
/* PP5022/24 and MCF5250 have 128KB of IRAM, but only PP5022+ have 80KB allocated for codecs */
|
||||||
|
#define IBSS_ATTR_WMA_LARGE_IRAM IBSS_ATTR
|
||||||
|
#else
|
||||||
|
/* other PP's and MCF5249 have 96KB of IRAM */
|
||||||
|
#define IBSS_ATTR_WMA_LARGE_IRAM
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
typedef struct WMADecodeContext
|
||||||
|
{
|
||||||
|
GetBitContext gb;
|
||||||
|
|
||||||
|
int nb_block_sizes; /* number of block sizes */
|
||||||
|
|
||||||
|
int sample_rate;
|
||||||
|
int nb_channels;
|
||||||
|
int bit_rate;
|
||||||
|
int version; /* 1 = 0x160 (WMAV1), 2 = 0x161 (WMAV2) */
|
||||||
|
int block_align;
|
||||||
|
int use_bit_reservoir;
|
||||||
|
int use_variable_block_len;
|
||||||
|
int use_exp_vlc; /* exponent coding: 0 = lsp, 1 = vlc + delta */
|
||||||
|
int use_noise_coding; /* true if perceptual noise is added */
|
||||||
|
int byte_offset_bits;
|
||||||
|
VLC exp_vlc;
|
||||||
|
int exponent_sizes[BLOCK_NB_SIZES];
|
||||||
|
uint16_t exponent_bands[BLOCK_NB_SIZES][25];
|
||||||
|
int high_band_start[BLOCK_NB_SIZES]; /* index of first coef in high band */
|
||||||
|
int coefs_start; /* first coded coef */
|
||||||
|
int coefs_end[BLOCK_NB_SIZES]; /* max number of coded coefficients */
|
||||||
|
int exponent_high_sizes[BLOCK_NB_SIZES];
|
||||||
|
int exponent_high_bands[BLOCK_NB_SIZES][HIGH_BAND_MAX_SIZE];
|
||||||
|
VLC hgain_vlc;
|
||||||
|
|
||||||
|
/* coded values in high bands */
|
||||||
|
int high_band_coded[MAX_CHANNELS][HIGH_BAND_MAX_SIZE];
|
||||||
|
int high_band_values[MAX_CHANNELS][HIGH_BAND_MAX_SIZE];
|
||||||
|
|
||||||
|
/* there are two possible tables for spectral coefficients */
|
||||||
|
VLC coef_vlc[2];
|
||||||
|
uint16_t *run_table[2];
|
||||||
|
uint16_t *level_table[2];
|
||||||
|
/* frame info */
|
||||||
|
int frame_len; /* frame length in samples */
|
||||||
|
int frame_len_bits; /* frame_len = 1 << frame_len_bits */
|
||||||
|
|
||||||
|
/* block info */
|
||||||
|
int reset_block_lengths;
|
||||||
|
int block_len_bits; /* log2 of current block length */
|
||||||
|
int next_block_len_bits; /* log2 of next block length */
|
||||||
|
int prev_block_len_bits; /* log2 of prev block length */
|
||||||
|
int block_len; /* block length in samples */
|
||||||
|
int block_num; /* block number in current frame */
|
||||||
|
int block_pos; /* current position in frame */
|
||||||
|
uint8_t ms_stereo; /* true if mid/side stereo mode */
|
||||||
|
uint8_t channel_coded[MAX_CHANNELS]; /* true if channel is coded */
|
||||||
|
int exponents_bsize[MAX_CHANNELS]; // log2 ratio frame/exp. length
|
||||||
|
fixed32 exponents[MAX_CHANNELS][BLOCK_MAX_SIZE];
|
||||||
|
fixed32 max_exponent[MAX_CHANNELS];
|
||||||
|
int16_t coefs1[MAX_CHANNELS][BLOCK_MAX_SIZE];
|
||||||
|
fixed32 (*coefs)[MAX_CHANNELS][BLOCK_MAX_SIZE];
|
||||||
|
fixed32 *windows[BLOCK_NB_SIZES];
|
||||||
|
/* output buffer for one frame and the last for IMDCT windowing */
|
||||||
|
fixed32 (*frame_out)[MAX_CHANNELS][BLOCK_MAX_SIZE*2];
|
||||||
|
|
||||||
|
/* last frame info */
|
||||||
|
uint8_t last_superframe[MAX_CODED_SUPERFRAME_SIZE + 4]; /* padding added */
|
||||||
|
int last_bitoffset;
|
||||||
|
int last_superframe_len;
|
||||||
|
fixed32 *noise_table;
|
||||||
|
int noise_index;
|
||||||
|
fixed32 noise_mult; /* XXX: suppress that and integrate it in the noise array */
|
||||||
|
/* lsp_to_curve tables */
|
||||||
|
fixed32 lsp_cos_table[BLOCK_MAX_SIZE];
|
||||||
|
fixed64 lsp_pow_e_table[256];
|
||||||
|
fixed32 lsp_pow_m_table1[(1 << LSP_POW_BITS)];
|
||||||
|
fixed32 lsp_pow_m_table2[(1 << LSP_POW_BITS)];
|
||||||
|
|
||||||
|
/* State of current superframe decoding */
|
||||||
|
int bit_offset;
|
||||||
|
int nb_frames;
|
||||||
|
int current_frame;
|
||||||
|
|
||||||
|
#ifdef TRACE
|
||||||
|
int frame_count;
|
||||||
|
#endif
|
||||||
|
} WMADecodeContext;
|
||||||
|
|
||||||
|
int wma_decode_init(WMADecodeContext* s, asf_waveformatex_t *wfx);
|
||||||
|
int wma_decode_superframe_init(WMADecodeContext* s, const uint8_t *buf, int buf_size);
|
||||||
|
int wma_decode_superframe_frame(WMADecodeContext* s, int32_t *samples, const uint8_t *buf, int buf_size);
|
||||||
|
|
||||||
|
#endif
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,243 @@
|
||||||
|
/****************************************************************************
|
||||||
|
* __________ __ ___.
|
||||||
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
||||||
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
||||||
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||||
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||||
|
* \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* Copyright (C) 2007 Michael Giacomelli
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU General Public License
|
||||||
|
* as published by the Free Software Foundation; either version 2
|
||||||
|
* of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
||||||
|
* KIND, either express or implied.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include "wmadec.h"
|
||||||
|
#include "wmafixed.h"
|
||||||
|
// #include <codecs.h>
|
||||||
|
|
||||||
|
fixed64 IntTo64(int x){
|
||||||
|
fixed64 res = 0;
|
||||||
|
unsigned char *p = (unsigned char *)&res;
|
||||||
|
|
||||||
|
#ifdef ROCKBOX_BIG_ENDIAN
|
||||||
|
p[5] = x & 0xff;
|
||||||
|
p[4] = (x & 0xff00)>>8;
|
||||||
|
p[3] = (x & 0xff0000)>>16;
|
||||||
|
p[2] = (x & 0xff000000)>>24;
|
||||||
|
#else
|
||||||
|
p[2] = x & 0xff;
|
||||||
|
p[3] = (x & 0xff00)>>8;
|
||||||
|
p[4] = (x & 0xff0000)>>16;
|
||||||
|
p[5] = (x & 0xff000000)>>24;
|
||||||
|
#endif
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
int IntFrom64(fixed64 x)
|
||||||
|
{
|
||||||
|
int res = 0;
|
||||||
|
unsigned char *p = (unsigned char *)&x;
|
||||||
|
|
||||||
|
#ifdef ROCKBOX_BIG_ENDIAN
|
||||||
|
res = p[5] | (p[4]<<8) | (p[3]<<16) | (p[2]<<24);
|
||||||
|
#else
|
||||||
|
res = p[2] | (p[3]<<8) | (p[4]<<16) | (p[5]<<24);
|
||||||
|
#endif
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
fixed32 Fixed32From64(fixed64 x)
|
||||||
|
{
|
||||||
|
return x & 0xFFFFFFFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
fixed64 Fixed32To64(fixed32 x)
|
||||||
|
{
|
||||||
|
return (fixed64)x;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Not performance senstitive code here
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
fixed64 fixmul64byfixed(fixed64 x, fixed32 y)
|
||||||
|
{
|
||||||
|
|
||||||
|
//return x * y;
|
||||||
|
return (x * y);
|
||||||
|
// return (fixed64) fixmul32(Fixed32From64(x),y);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
fixed32 fixdiv32(fixed32 x, fixed32 y)
|
||||||
|
{
|
||||||
|
fixed64 temp;
|
||||||
|
|
||||||
|
if(x == 0)
|
||||||
|
return 0;
|
||||||
|
if(y == 0)
|
||||||
|
return 0x7fffffff;
|
||||||
|
temp = x;
|
||||||
|
temp <<= PRECISION;
|
||||||
|
return (fixed32)(temp / y);
|
||||||
|
}
|
||||||
|
|
||||||
|
fixed64 fixdiv64(fixed64 x, fixed64 y)
|
||||||
|
{
|
||||||
|
fixed64 temp;
|
||||||
|
|
||||||
|
if(x == 0)
|
||||||
|
return 0;
|
||||||
|
if(y == 0)
|
||||||
|
return 0x07ffffffffffffffLL;
|
||||||
|
temp = x;
|
||||||
|
temp <<= PRECISION64;
|
||||||
|
return (fixed64)(temp / y);
|
||||||
|
}
|
||||||
|
|
||||||
|
fixed32 fixsqrt32(fixed32 x)
|
||||||
|
{
|
||||||
|
|
||||||
|
unsigned long r = 0, s, v = (unsigned long)x;
|
||||||
|
|
||||||
|
#define STEP(k) s = r + (1 << k * 2); r >>= 1; \
|
||||||
|
if (s <= v) { v -= s; r |= (1 << k * 2); }
|
||||||
|
|
||||||
|
STEP(15);
|
||||||
|
STEP(14);
|
||||||
|
STEP(13);
|
||||||
|
STEP(12);
|
||||||
|
STEP(11);
|
||||||
|
STEP(10);
|
||||||
|
STEP(9);
|
||||||
|
STEP(8);
|
||||||
|
STEP(7);
|
||||||
|
STEP(6);
|
||||||
|
STEP(5);
|
||||||
|
STEP(4);
|
||||||
|
STEP(3);
|
||||||
|
STEP(2);
|
||||||
|
STEP(1);
|
||||||
|
STEP(0);
|
||||||
|
|
||||||
|
return (fixed32)(r << (PRECISION / 2));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* Inverse gain of circular cordic rotation in s0.31 format. */
|
||||||
|
static const long cordic_circular_gain = 0xb2458939; /* 0.607252929 */
|
||||||
|
|
||||||
|
/* Table of values of atan(2^-i) in 0.32 format fractions of pi where pi = 0xffffffff / 2 */
|
||||||
|
static const unsigned long atan_table[] = {
|
||||||
|
0x1fffffff, /* +0.785398163 (or pi/4) */
|
||||||
|
0x12e4051d, /* +0.463647609 */
|
||||||
|
0x09fb385b, /* +0.244978663 */
|
||||||
|
0x051111d4, /* +0.124354995 */
|
||||||
|
0x028b0d43, /* +0.062418810 */
|
||||||
|
0x0145d7e1, /* +0.031239833 */
|
||||||
|
0x00a2f61e, /* +0.015623729 */
|
||||||
|
0x00517c55, /* +0.007812341 */
|
||||||
|
0x0028be53, /* +0.003906230 */
|
||||||
|
0x00145f2e, /* +0.001953123 */
|
||||||
|
0x000a2f98, /* +0.000976562 */
|
||||||
|
0x000517cc, /* +0.000488281 */
|
||||||
|
0x00028be6, /* +0.000244141 */
|
||||||
|
0x000145f3, /* +0.000122070 */
|
||||||
|
0x0000a2f9, /* +0.000061035 */
|
||||||
|
0x0000517c, /* +0.000030518 */
|
||||||
|
0x000028be, /* +0.000015259 */
|
||||||
|
0x0000145f, /* +0.000007629 */
|
||||||
|
0x00000a2f, /* +0.000003815 */
|
||||||
|
0x00000517, /* +0.000001907 */
|
||||||
|
0x0000028b, /* +0.000000954 */
|
||||||
|
0x00000145, /* +0.000000477 */
|
||||||
|
0x000000a2, /* +0.000000238 */
|
||||||
|
0x00000051, /* +0.000000119 */
|
||||||
|
0x00000028, /* +0.000000060 */
|
||||||
|
0x00000014, /* +0.000000030 */
|
||||||
|
0x0000000a, /* +0.000000015 */
|
||||||
|
0x00000005, /* +0.000000007 */
|
||||||
|
0x00000002, /* +0.000000004 */
|
||||||
|
0x00000001, /* +0.000000002 */
|
||||||
|
0x00000000, /* +0.000000001 */
|
||||||
|
0x00000000, /* +0.000000000 */
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
|
Below here functions do not use standard fixed precision!
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Implements sin and cos using CORDIC rotation.
|
||||||
|
*
|
||||||
|
* @param phase has range from 0 to 0xffffffff, representing 0 and
|
||||||
|
* 2*pi respectively.
|
||||||
|
* @param cos return address for cos
|
||||||
|
* @return sin of phase, value is a signed value from LONG_MIN to LONG_MAX,
|
||||||
|
* representing -1 and 1 respectively.
|
||||||
|
*
|
||||||
|
* Gives at least 24 bits precision (last 2-8 bits or so are probably off)
|
||||||
|
*/
|
||||||
|
long fsincos(unsigned long phase, fixed32 *cos)
|
||||||
|
{
|
||||||
|
int32_t x, x1, y, y1;
|
||||||
|
unsigned long z, z1;
|
||||||
|
int i;
|
||||||
|
|
||||||
|
/* Setup initial vector */
|
||||||
|
x = cordic_circular_gain;
|
||||||
|
y = 0;
|
||||||
|
z = phase;
|
||||||
|
|
||||||
|
/* The phase has to be somewhere between 0..pi for this to work right */
|
||||||
|
if (z < 0xffffffff / 4) {
|
||||||
|
/* z in first quadrant, z += pi/2 to correct */
|
||||||
|
x = -x;
|
||||||
|
z += 0xffffffff / 4;
|
||||||
|
} else if (z < 3 * (0xffffffff / 4)) {
|
||||||
|
/* z in third quadrant, z -= pi/2 to correct */
|
||||||
|
z -= 0xffffffff / 4;
|
||||||
|
} else {
|
||||||
|
/* z in fourth quadrant, z -= 3pi/2 to correct */
|
||||||
|
x = -x;
|
||||||
|
z -= 3 * (0xffffffff / 4);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Each iteration adds roughly 1-bit of extra precision */
|
||||||
|
for (i = 0; i < 31; i++) {
|
||||||
|
x1 = x >> i;
|
||||||
|
y1 = y >> i;
|
||||||
|
z1 = atan_table[i];
|
||||||
|
|
||||||
|
/* Decided which direction to rotate vector. Pivot point is pi/2 */
|
||||||
|
if (z >= 0xffffffff / 4) {
|
||||||
|
x -= y1;
|
||||||
|
y += x1;
|
||||||
|
z -= z1;
|
||||||
|
} else {
|
||||||
|
x += y1;
|
||||||
|
y -= x1;
|
||||||
|
z += z1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (cos)
|
||||||
|
*cos = x;
|
||||||
|
|
||||||
|
return y;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,144 @@
|
||||||
|
/****************************************************************************
|
||||||
|
* __________ __ ___.
|
||||||
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
||||||
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
||||||
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||||
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||||
|
* \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* Copyright (C) 2007 Michael Giacomelli
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU General Public License
|
||||||
|
* as published by the Free Software Foundation; either version 2
|
||||||
|
* of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
||||||
|
* KIND, either express or implied.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/* fixed precision code. We use a combination of Sign 15.16 and Sign.31
|
||||||
|
precision here.
|
||||||
|
|
||||||
|
The WMA decoder does not always follow this convention, and occasionally
|
||||||
|
renormalizes values to other formats in order to maximize precision.
|
||||||
|
However, only the two precisions above are provided in this file.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "types.h"
|
||||||
|
|
||||||
|
#define PRECISION 16
|
||||||
|
#define PRECISION64 16
|
||||||
|
|
||||||
|
|
||||||
|
#define fixtof64(x) (float)((float)(x) / (float)(1 << PRECISION64)) //does not work on int64_t!
|
||||||
|
#define ftofix32(x) ((fixed32)((x) * (float)(1 << PRECISION) + ((x) < 0 ? -0.5 : 0.5)))
|
||||||
|
#define itofix64(x) (IntTo64(x))
|
||||||
|
#define itofix32(x) ((x) << PRECISION)
|
||||||
|
#define fixtoi32(x) ((x) >> PRECISION)
|
||||||
|
#define fixtoi64(x) (IntFrom64(x))
|
||||||
|
|
||||||
|
|
||||||
|
/*fixed functions*/
|
||||||
|
|
||||||
|
fixed64 IntTo64(int x);
|
||||||
|
int IntFrom64(fixed64 x);
|
||||||
|
fixed32 Fixed32From64(fixed64 x);
|
||||||
|
fixed64 Fixed32To64(fixed32 x);
|
||||||
|
fixed64 fixmul64byfixed(fixed64 x, fixed32 y);
|
||||||
|
fixed32 fixdiv32(fixed32 x, fixed32 y);
|
||||||
|
fixed64 fixdiv64(fixed64 x, fixed64 y);
|
||||||
|
fixed32 fixsqrt32(fixed32 x);
|
||||||
|
long fsincos(unsigned long phase, fixed32 *cos);
|
||||||
|
|
||||||
|
#ifdef CPU_ARM
|
||||||
|
|
||||||
|
/*Sign-15.16 format */
|
||||||
|
|
||||||
|
#define fixmul32(x, y) \
|
||||||
|
({ int32_t __hi; \
|
||||||
|
uint32_t __lo; \
|
||||||
|
int32_t __result; \
|
||||||
|
asm ("smull %0, %1, %3, %4\n\t" \
|
||||||
|
"movs %0, %0, lsr %5\n\t" \
|
||||||
|
"adc %2, %0, %1, lsl %6" \
|
||||||
|
: "=&r" (__lo), "=&r" (__hi), "=r" (__result) \
|
||||||
|
: "%r" (x), "r" (y), \
|
||||||
|
"M" (PRECISION), "M" (32 - PRECISION) \
|
||||||
|
: "cc"); \
|
||||||
|
__result; \
|
||||||
|
})
|
||||||
|
|
||||||
|
#define fixmul32b(x, y) \
|
||||||
|
({ int32_t __hi; \
|
||||||
|
uint32_t __lo; \
|
||||||
|
int32_t __result; \
|
||||||
|
asm ("smull %0, %1, %3, %4\n\t" \
|
||||||
|
"movs %2, %1, lsl #1" \
|
||||||
|
: "=&r" (__lo), "=&r" (__hi), "=r" (__result) \
|
||||||
|
: "%r" (x), "r" (y) \
|
||||||
|
: "cc"); \
|
||||||
|
__result; \
|
||||||
|
})
|
||||||
|
|
||||||
|
#elif defined(CPU_COLDFIRE)
|
||||||
|
|
||||||
|
static inline int32_t fixmul32(int32_t x, int32_t y)
|
||||||
|
{
|
||||||
|
#if PRECISION != 16
|
||||||
|
#warning Coldfire fixmul32() only works for PRECISION == 16
|
||||||
|
#endif
|
||||||
|
int32_t t1;
|
||||||
|
asm (
|
||||||
|
"mac.l %[x], %[y], %%acc0 \n" /* multiply */
|
||||||
|
"mulu.l %[y], %[x] \n" /* get lower half, avoid emac stall */
|
||||||
|
"movclr.l %%acc0, %[t1] \n" /* get higher half */
|
||||||
|
"lsr.l #1, %[t1] \n"
|
||||||
|
"move.w %[t1], %[x] \n"
|
||||||
|
"swap %[x] \n"
|
||||||
|
: [t1] "=&d" (t1), [x] "+d" (x)
|
||||||
|
: [y] "d" (y)
|
||||||
|
);
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline int32_t fixmul32b(int32_t x, int32_t y)
|
||||||
|
{
|
||||||
|
asm (
|
||||||
|
"mac.l %[x], %[y], %%acc0 \n" /* multiply */
|
||||||
|
"movclr.l %%acc0, %[x] \n" /* get higher half */
|
||||||
|
: [x] "+d" (x)
|
||||||
|
: [y] "d" (y)
|
||||||
|
);
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
static inline fixed32 fixmul32(fixed32 x, fixed32 y)
|
||||||
|
{
|
||||||
|
fixed64 temp;
|
||||||
|
temp = x;
|
||||||
|
temp *= y;
|
||||||
|
|
||||||
|
temp >>= PRECISION;
|
||||||
|
|
||||||
|
return (fixed32)temp;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline fixed32 fixmul32b(fixed32 x, fixed32 y)
|
||||||
|
{
|
||||||
|
fixed64 temp;
|
||||||
|
|
||||||
|
temp = x;
|
||||||
|
temp *= y;
|
||||||
|
|
||||||
|
temp >>= 31; //16+31-16 = 31 bits
|
||||||
|
|
||||||
|
return (fixed32)temp;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue