Welcome to mirror list, hosted at ThFree Co, Russian Federation.

typedef.h « amr_float « libavcodec « ffmpeg « MPCVideoDec « transform « filters « src - github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b25d92baf2a6d22a5abdbae9a1f0dce7615053c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * ===================================================================
 *  TS 26.104
 *  REL-5 V5.4.0 2004-03
 *  REL-6 V6.1.0 2004-03
 *  3GPP AMR Floating-point Speech Codec
 * ===================================================================
 *
 */
/* This is valid for PC */

#ifndef _TYPEDEF_H
#define _TYPEDEF_H

typedef char Word8;
typedef unsigned char UWord8;
typedef short Word16;
typedef long Word32;
typedef float Float32;
typedef double Float64;

#endif