yading@10
|
1 /*
|
yading@10
|
2 * Shared functions between AMR codecs
|
yading@10
|
3 *
|
yading@10
|
4 * Copyright (c) 2010 Marcelo Galvao Povoa
|
yading@10
|
5 *
|
yading@10
|
6 * This file is part of FFmpeg.
|
yading@10
|
7 *
|
yading@10
|
8 * FFmpeg is free software; you can redistribute it and/or
|
yading@10
|
9 * modify it under the terms of the GNU Lesser General Public
|
yading@10
|
10 * License as published by the Free Software Foundation; either
|
yading@10
|
11 * version 2.1 of the License, or (at your option) any later version.
|
yading@10
|
12 *
|
yading@10
|
13 * FFmpeg is distributed in the hope that it will be useful,
|
yading@10
|
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
yading@10
|
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
yading@10
|
16 * Lesser General Public License for more details.
|
yading@10
|
17 *
|
yading@10
|
18 * You should have received a copy of the GNU Lesser General Public
|
yading@10
|
19 * License along with FFmpeg; if not, write to the Free Software
|
yading@10
|
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
yading@10
|
21 */
|
yading@10
|
22
|
yading@10
|
23 #ifndef AVCODEC_AMR_H
|
yading@10
|
24 #define AVCODEC_AMR_H
|
yading@10
|
25
|
yading@10
|
26 #include <string.h>
|
yading@10
|
27
|
yading@10
|
28 #include "avcodec.h"
|
yading@10
|
29
|
yading@10
|
30 #ifdef AMR_USE_16BIT_TABLES
|
yading@10
|
31 #define R_TABLE_TYPE uint16_t
|
yading@10
|
32 #else
|
yading@10
|
33 #define R_TABLE_TYPE uint8_t
|
yading@10
|
34 #endif
|
yading@10
|
35
|
yading@10
|
36 /**
|
yading@10
|
37 * Fill the frame structure variables from bitstream by parsing the
|
yading@10
|
38 * given reordering table that uses the following format:
|
yading@10
|
39 *
|
yading@10
|
40 * Each field (16 bits) in the AMR Frame is stored as:
|
yading@10
|
41 * - one byte for the number of bits in the field
|
yading@10
|
42 * - one byte for the field index
|
yading@10
|
43 * - then, one byte for each bit of the field (from most-significant to least)
|
yading@10
|
44 * of the position of that bit in the AMR frame.
|
yading@10
|
45 *
|
yading@10
|
46 * @param out pointer to the frame struct
|
yading@10
|
47 * @param size the size in bytes of the frame struct
|
yading@10
|
48 * @param data input bitstream after the frame header
|
yading@10
|
49 * @param ord_table the reordering table as above
|
yading@10
|
50 */
|
yading@10
|
51 static inline void ff_amr_bit_reorder(uint16_t *out, int size,
|
yading@10
|
52 const uint8_t *data,
|
yading@10
|
53 const R_TABLE_TYPE *ord_table)
|
yading@10
|
54 {
|
yading@10
|
55 int field_size;
|
yading@10
|
56
|
yading@10
|
57 memset(out, 0, size);
|
yading@10
|
58 while ((field_size = *ord_table++)) {
|
yading@10
|
59 int field = 0;
|
yading@10
|
60 int field_offset = *ord_table++;
|
yading@10
|
61 while (field_size--) {
|
yading@10
|
62 int bit = *ord_table++;
|
yading@10
|
63 field <<= 1;
|
yading@10
|
64 field |= data[bit >> 3] >> (bit & 7) & 1;
|
yading@10
|
65 }
|
yading@10
|
66 out[field_offset >> 1] = field;
|
yading@10
|
67 }
|
yading@10
|
68 }
|
yading@10
|
69
|
yading@10
|
70 #endif /* AVCODEC_AMR_H */
|