annotate src/opus-1.3/celt/modes.h @ 154:4664ac0c1032

Add Opus sources and macOS builds
author Chris Cannam <cannam@all-day-breakfast.com>
date Wed, 23 Jan 2019 13:48:08 +0000
parents
children
rev   line source
cannam@154 1 /* Copyright (c) 2007-2008 CSIRO
cannam@154 2 Copyright (c) 2007-2009 Xiph.Org Foundation
cannam@154 3 Copyright (c) 2008 Gregory Maxwell
cannam@154 4 Written by Jean-Marc Valin and Gregory Maxwell */
cannam@154 5 /*
cannam@154 6 Redistribution and use in source and binary forms, with or without
cannam@154 7 modification, are permitted provided that the following conditions
cannam@154 8 are met:
cannam@154 9
cannam@154 10 - Redistributions of source code must retain the above copyright
cannam@154 11 notice, this list of conditions and the following disclaimer.
cannam@154 12
cannam@154 13 - Redistributions in binary form must reproduce the above copyright
cannam@154 14 notice, this list of conditions and the following disclaimer in the
cannam@154 15 documentation and/or other materials provided with the distribution.
cannam@154 16
cannam@154 17 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
cannam@154 18 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
cannam@154 19 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
cannam@154 20 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
cannam@154 21 OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
cannam@154 22 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
cannam@154 23 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
cannam@154 24 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
cannam@154 25 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
cannam@154 26 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
cannam@154 27 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
cannam@154 28 */
cannam@154 29
cannam@154 30 #ifndef MODES_H
cannam@154 31 #define MODES_H
cannam@154 32
cannam@154 33 #include "opus_types.h"
cannam@154 34 #include "celt.h"
cannam@154 35 #include "arch.h"
cannam@154 36 #include "mdct.h"
cannam@154 37 #include "entenc.h"
cannam@154 38 #include "entdec.h"
cannam@154 39
cannam@154 40 #define MAX_PERIOD 1024
cannam@154 41
cannam@154 42 typedef struct {
cannam@154 43 int size;
cannam@154 44 const opus_int16 *index;
cannam@154 45 const unsigned char *bits;
cannam@154 46 const unsigned char *caps;
cannam@154 47 } PulseCache;
cannam@154 48
cannam@154 49 /** Mode definition (opaque)
cannam@154 50 @brief Mode definition
cannam@154 51 */
cannam@154 52 struct OpusCustomMode {
cannam@154 53 opus_int32 Fs;
cannam@154 54 int overlap;
cannam@154 55
cannam@154 56 int nbEBands;
cannam@154 57 int effEBands;
cannam@154 58 opus_val16 preemph[4];
cannam@154 59 const opus_int16 *eBands; /**< Definition for each "pseudo-critical band" */
cannam@154 60
cannam@154 61 int maxLM;
cannam@154 62 int nbShortMdcts;
cannam@154 63 int shortMdctSize;
cannam@154 64
cannam@154 65 int nbAllocVectors; /**< Number of lines in the matrix below */
cannam@154 66 const unsigned char *allocVectors; /**< Number of bits in each band for several rates */
cannam@154 67 const opus_int16 *logN;
cannam@154 68
cannam@154 69 const opus_val16 *window;
cannam@154 70 mdct_lookup mdct;
cannam@154 71 PulseCache cache;
cannam@154 72 };
cannam@154 73
cannam@154 74
cannam@154 75 #endif