Mercurial > libavcodec.hg
annotate libamr.c @ 9780:9f3ef4eea41a libavcodec
Fix memleak due to c->decomp_buf never being freed.
author | reimar |
---|---|
date | Sun, 31 May 2009 11:47:52 +0000 |
parents | 592097778fa0 |
children | 336d3c384066 |
rev | line source |
---|---|
1258
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
diff
changeset
|
1 /* |
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
diff
changeset
|
2 * AMR Audio decoder stub |
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
diff
changeset
|
3 * Copyright (c) 2003 the ffmpeg project |
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
diff
changeset
|
4 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3463
diff
changeset
|
5 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3463
diff
changeset
|
6 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3463
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
1258
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
diff
changeset
|
8 * modify it under the terms of the GNU Lesser General Public |
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
diff
changeset
|
9 * License as published by the Free Software Foundation; either |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3463
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
1258
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
diff
changeset
|
11 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3463
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
1258
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
diff
changeset
|
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
diff
changeset
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
diff
changeset
|
15 * Lesser General Public License for more details. |
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
diff
changeset
|
16 * |
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
diff
changeset
|
17 * You should have received a copy of the GNU Lesser General Public |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3463
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
2979
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
1258
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
diff
changeset
|
20 */ |
2967 | 21 |
4575 | 22 /** @file |
23 * Adaptive Multi-Rate (AMR) Audio decoder stub. | |
24 * | |
25 * This code implements both an AMR-NarrowBand (AMR-NB) and an AMR-WideBand | |
26 * (AMR-WB) audio encoder/decoder through external reference code from | |
27 * http://www.3gpp.org/. The license of the code from 3gpp is unclear so you | |
28 * have to download the code separately. Two versions exists: One fixed-point | |
4857 | 29 * and one floating-point. For some reason the float encoder is significantly |
30 * faster at least on a P4 1.5GHz (0.9s instead of 9.9s on a 30s audio clip | |
31 * at MR102). Both float and fixed point are supported for AMR-NB, but only | |
32 * float for AMR-WB. | |
4575 | 33 * |
34 * \section AMR-NB | |
35 * | |
36 * \subsection Float | |
37 * The float version (default) can be downloaded from: | |
4746
4aedb3b6fa4e
Update specification and reference implementation links.
diego
parents:
4744
diff
changeset
|
38 * http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/26104-610.zip |
4575 | 39 * |
40 * \subsection Specification | |
41 * The specification for AMR-NB can be found in TS 26.071 | |
42 * (http://www.3gpp.org/ftp/Specs/html-info/26071.htm) and some other | |
43 * info at http://www.3gpp.org/ftp/Specs/html-info/26-series.htm. | |
44 * | |
45 * \section AMR-WB | |
4858
3e38885a28bc
Remove the build instructions from the doxygen comments, they are duplicated
diego
parents:
4857
diff
changeset
|
46 * |
4575 | 47 * \subsection Float |
48 * The reference code can be downloaded from: | |
4746
4aedb3b6fa4e
Update specification and reference implementation links.
diego
parents:
4744
diff
changeset
|
49 * http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-600.zip |
4575 | 50 * |
51 * \subsection Specification | |
4746
4aedb3b6fa4e
Update specification and reference implementation links.
diego
parents:
4744
diff
changeset
|
52 * The specification for AMR-WB can be found in TS 26.171 |
4aedb3b6fa4e
Update specification and reference implementation links.
diego
parents:
4744
diff
changeset
|
53 * (http://www.3gpp.org/ftp/Specs/html-info/26171.htm) and some other |
4aedb3b6fa4e
Update specification and reference implementation links.
diego
parents:
4744
diff
changeset
|
54 * info at http://www.3gpp.org/ftp/Specs/html-info/26-series.htm. |
4575 | 55 * |
1297 | 56 */ |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
57 |
1297 | 58 #include "avcodec.h" |
59 | |
9670
5c929c37e1a0
Move AMR-WB-specific code to the AMR-WB section of the file.
diego
parents:
9669
diff
changeset
|
60 static void amr_decode_fix_avctx(AVCodecContext *avctx) |
5c929c37e1a0
Move AMR-WB-specific code to the AMR-WB section of the file.
diego
parents:
9669
diff
changeset
|
61 { |
5c929c37e1a0
Move AMR-WB-specific code to the AMR-WB section of the file.
diego
parents:
9669
diff
changeset
|
62 const int is_amr_wb = 1 + (avctx->codec_id == CODEC_ID_AMR_WB); |
5c929c37e1a0
Move AMR-WB-specific code to the AMR-WB section of the file.
diego
parents:
9669
diff
changeset
|
63 |
5c929c37e1a0
Move AMR-WB-specific code to the AMR-WB section of the file.
diego
parents:
9669
diff
changeset
|
64 if (!avctx->sample_rate) |
5c929c37e1a0
Move AMR-WB-specific code to the AMR-WB section of the file.
diego
parents:
9669
diff
changeset
|
65 avctx->sample_rate = 8000 * is_amr_wb; |
5c929c37e1a0
Move AMR-WB-specific code to the AMR-WB section of the file.
diego
parents:
9669
diff
changeset
|
66 |
5c929c37e1a0
Move AMR-WB-specific code to the AMR-WB section of the file.
diego
parents:
9669
diff
changeset
|
67 if (!avctx->channels) |
5c929c37e1a0
Move AMR-WB-specific code to the AMR-WB section of the file.
diego
parents:
9669
diff
changeset
|
68 avctx->channels = 1; |
5c929c37e1a0
Move AMR-WB-specific code to the AMR-WB section of the file.
diego
parents:
9669
diff
changeset
|
69 |
5c929c37e1a0
Move AMR-WB-specific code to the AMR-WB section of the file.
diego
parents:
9669
diff
changeset
|
70 avctx->frame_size = 160 * is_amr_wb; |
5c929c37e1a0
Move AMR-WB-specific code to the AMR-WB section of the file.
diego
parents:
9669
diff
changeset
|
71 avctx->sample_fmt = SAMPLE_FMT_S16; |
5c929c37e1a0
Move AMR-WB-specific code to the AMR-WB section of the file.
diego
parents:
9669
diff
changeset
|
72 } |
5c929c37e1a0
Move AMR-WB-specific code to the AMR-WB section of the file.
diego
parents:
9669
diff
changeset
|
73 |
5c929c37e1a0
Move AMR-WB-specific code to the AMR-WB section of the file.
diego
parents:
9669
diff
changeset
|
74 #if CONFIG_LIBAMR_NB |
5c929c37e1a0
Move AMR-WB-specific code to the AMR-WB section of the file.
diego
parents:
9669
diff
changeset
|
75 |
4843
0e11f292482f
Replace hackish support for amr-nb and amr-wb. Instead of including the source
diego
parents:
4842
diff
changeset
|
76 #include <amrnb/interf_dec.h> |
0e11f292482f
Replace hackish support for amr-nb and amr-wb. Instead of including the source
diego
parents:
4842
diff
changeset
|
77 #include <amrnb/interf_enc.h> |
1297 | 78 |
8347
81238f0bea66
Fix warning "format not a string literal and no format arguments".
benoit
parents:
7451
diff
changeset
|
79 static const char nb_bitrate_unsupported[] = |
4793
e69d9ecaaf84
Print a list of valid AMR bitrates if a wrong one is used.
diego
parents:
4789
diff
changeset
|
80 "bitrate not supported: use one of 4.75k, 5.15k, 5.9k, 6.7k, 7.4k, 7.95k, 10.2k or 12.2k\n"; |
e69d9ecaaf84
Print a list of valid AMR bitrates if a wrong one is used.
diego
parents:
4789
diff
changeset
|
81 |
1297 | 82 /* Common code for fixed and float version*/ |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
83 typedef struct AMR_bitrates { |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
84 int rate; |
1297 | 85 enum Mode mode; |
86 } AMR_bitrates; | |
87 | |
4744 | 88 /* Match desired bitrate */ |
89 static int getBitrateMode(int bitrate) | |
1297 | 90 { |
4744 | 91 /* make the correspondance between bitrate and mode */ |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
92 AMR_bitrates rates[] = { { 4750, MR475}, |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
93 { 5150, MR515}, |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
94 { 5900, MR59}, |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
95 { 6700, MR67}, |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
96 { 7400, MR74}, |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
97 { 7950, MR795}, |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
98 {10200, MR102}, |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
99 {12200, MR122}, }; |
1297 | 100 int i; |
4633 | 101 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
102 for (i = 0; i < 8; i++) |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
103 if (rates[i].rate == bitrate) |
6750 | 104 return rates[i].mode; |
4744 | 105 /* no bitrate matching, return an error */ |
106 return -1; | |
1297 | 107 } |
108 | |
109 typedef struct AMRContext { | |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
110 int frameCount; |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
111 void *decState; |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
112 int *enstate; |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
113 int enc_bitrate; |
1297 | 114 } AMRContext; |
115 | |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
116 static av_cold int amr_nb_decode_init(AVCodecContext *avctx) |
1297 | 117 { |
118 AMRContext *s = avctx->priv_data; | |
4633 | 119 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
120 s->frameCount = 0; |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
121 s->decState = Decoder_Interface_init(); |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
122 if (!s->decState) { |
1825 | 123 av_log(avctx, AV_LOG_ERROR, "Decoder_Interface_init error\r\n"); |
1297 | 124 return -1; |
125 } | |
4094 | 126 |
127 amr_decode_fix_avctx(avctx); | |
128 | |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
129 if (avctx->channels > 1) { |
4094 | 130 av_log(avctx, AV_LOG_ERROR, "amr_nb: multichannel decoding not supported\n"); |
131 return -1; | |
132 } | |
133 | |
1297 | 134 return 0; |
135 } | |
136 | |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
137 static av_cold int amr_nb_decode_close(AVCodecContext *avctx) |
9651
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
138 { |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
139 AMRContext *s = avctx->priv_data; |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
140 |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
141 Decoder_Interface_exit(s->decState); |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
142 return 0; |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
143 } |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
144 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
145 static int amr_nb_decode_frame(AVCodecContext *avctx, void *data, |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
146 int *data_size, AVPacket *avpkt) |
9651
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
147 { |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
148 const uint8_t *buf = avpkt->data; |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
149 int buf_size = avpkt->size; |
9651
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
150 AMRContext *s = avctx->priv_data; |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
151 const uint8_t *amrData = buf; |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
152 static const uint8_t block_size[16] = { 12, 13, 15, 17, 19, 20, 26, 31, 5, 0, 0, 0, 0, 0, 0, 0 }; |
9651
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
153 enum Mode dec_mode; |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
154 int packet_size; |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
155 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
156 /* av_log(NULL, AV_LOG_DEBUG, "amr_decode_frame buf=%p buf_size=%d frameCount=%d!!\n", |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
157 buf, buf_size, s->frameCount); */ |
9651
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
158 |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
159 dec_mode = (buf[0] >> 3) & 0x000F; |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
160 packet_size = block_size[dec_mode] + 1; |
9651
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
161 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
162 if (packet_size > buf_size) { |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
163 av_log(avctx, AV_LOG_ERROR, "amr frame too short (%u, should be %u)\n", |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
164 buf_size, packet_size); |
9651
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
165 return -1; |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
166 } |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
167 |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
168 s->frameCount++; |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
169 /* av_log(NULL, AV_LOG_DEBUG, "packet_size=%d amrData= 0x%X %X %X %X\n", |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
170 packet_size, amrData[0], amrData[1], amrData[2], amrData[3]); */ |
9651
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
171 /* call decoder */ |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
172 Decoder_Interface_Decode(s->decState, amrData, data, 0); |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
173 *data_size = 160 * 2; |
9651
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
174 |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
175 return packet_size; |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
176 } |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
177 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
178 AVCodec libamr_nb_decoder = { |
9651
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
179 "libamr_nb", |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
180 CODEC_TYPE_AUDIO, |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
181 CODEC_ID_AMR_NB, |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
182 sizeof(AMRContext), |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
183 amr_nb_decode_init, |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
184 NULL, |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
185 amr_nb_decode_close, |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
186 amr_nb_decode_frame, |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
187 .long_name = NULL_IF_CONFIG_SMALL("libamr-nb Adaptive Multi-Rate (AMR) Narrow-Band"), |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
188 }; |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
189 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
190 static av_cold int amr_nb_encode_init(AVCodecContext *avctx) |
1297 | 191 { |
192 AMRContext *s = avctx->priv_data; | |
4633 | 193 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
194 s->frameCount = 0; |
2967 | 195 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
196 if (avctx->sample_rate != 8000) { |
4309
1f95aa362562
always print message when error, AV_LOG_DEBUG -> AV_LOG_ERROR
bcoudurier
parents:
4221
diff
changeset
|
197 av_log(avctx, AV_LOG_ERROR, "Only 8000Hz sample rate supported\n"); |
1297 | 198 return -1; |
199 } | |
200 | |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
201 if (avctx->channels != 1) { |
4309
1f95aa362562
always print message when error, AV_LOG_DEBUG -> AV_LOG_ERROR
bcoudurier
parents:
4221
diff
changeset
|
202 av_log(avctx, AV_LOG_ERROR, "Only mono supported\n"); |
1297 | 203 return -1; |
204 } | |
205 | |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
206 avctx->frame_size = 160; |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
207 avctx->coded_frame = avcodec_alloc_frame(); |
1297 | 208 |
209 s->enstate=Encoder_Interface_init(0); | |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
210 if (!s->enstate) { |
4309
1f95aa362562
always print message when error, AV_LOG_DEBUG -> AV_LOG_ERROR
bcoudurier
parents:
4221
diff
changeset
|
211 av_log(avctx, AV_LOG_ERROR, "Encoder_Interface_init error\n"); |
1297 | 212 return -1; |
213 } | |
214 | |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
215 if ((s->enc_bitrate = getBitrateMode(avctx->bit_rate)) < 0) { |
4793
e69d9ecaaf84
Print a list of valid AMR bitrates if a wrong one is used.
diego
parents:
4789
diff
changeset
|
216 av_log(avctx, AV_LOG_ERROR, nb_bitrate_unsupported); |
4744 | 217 return -1; |
218 } | |
1297 | 219 |
220 return 0; | |
221 } | |
222 | |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
223 static av_cold int amr_nb_encode_close(AVCodecContext *avctx) |
1297 | 224 { |
225 AMRContext *s = avctx->priv_data; | |
4633 | 226 |
1297 | 227 Encoder_Interface_exit(s->enstate); |
228 av_freep(&avctx->coded_frame); | |
229 return 0; | |
230 } | |
231 | |
232 static int amr_nb_encode_frame(AVCodecContext *avctx, | |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
233 unsigned char *frame/*out*/, |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
234 int buf_size, void *data/*in*/) |
1297 | 235 { |
4634 | 236 AMRContext *s = avctx->priv_data; |
1297 | 237 int written; |
238 | |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
239 if ((s->enc_bitrate = getBitrateMode(avctx->bit_rate)) < 0) { |
4793
e69d9ecaaf84
Print a list of valid AMR bitrates if a wrong one is used.
diego
parents:
4789
diff
changeset
|
240 av_log(avctx, AV_LOG_ERROR, nb_bitrate_unsupported); |
4744 | 241 return -1; |
242 } | |
4220
4115a044e31d
allow amr bitrate to be changed "on the fly" through avctx->bitrate.
gpoirier
parents:
4094
diff
changeset
|
243 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
244 written = Encoder_Interface_Encode(s->enstate, s->enc_bitrate, data, |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
245 frame, 0); |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
246 /* av_log(NULL, AV_LOG_DEBUG, "amr_nb_encode_frame encoded %u bytes, bitrate %u, first byte was %#02x\n", |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
247 written, s->enc_bitrate, frame[0] ); */ |
1297 | 248 |
249 return written; | |
250 } | |
251 | |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
252 AVCodec libamr_nb_encoder = { |
4898
3df69e140c33
Give libamr decoders/encoders a lib prefix in the name.
diego
parents:
4858
diff
changeset
|
253 "libamr_nb", |
1297 | 254 CODEC_TYPE_AUDIO, |
255 CODEC_ID_AMR_NB, | |
256 sizeof(AMRContext), | |
257 amr_nb_encode_init, | |
258 amr_nb_encode_frame, | |
259 amr_nb_encode_close, | |
260 NULL, | |
7451
85ab7655ad4d
Modify all codecs to report their supported input and output sample format(s).
pross
parents:
7040
diff
changeset
|
261 .sample_fmts = (enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE}, |
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
6750
diff
changeset
|
262 .long_name = NULL_IF_CONFIG_SMALL("libamr-nb Adaptive Multi-Rate (AMR) Narrow-Band"), |
1297 | 263 }; |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
264 |
2895 | 265 #endif |
266 | |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
267 /* -----------AMR wideband ------------*/ |
8590 | 268 #if CONFIG_LIBAMR_WB |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
269 |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
270 #ifdef _TYPEDEF_H |
6186 | 271 //To avoid duplicate typedefs from typedef in amr-nb |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
272 #define typedef_h |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
273 #endif |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
274 |
4843
0e11f292482f
Replace hackish support for amr-nb and amr-wb. Instead of including the source
diego
parents:
4842
diff
changeset
|
275 #include <amrwb/dec_if.h> |
0e11f292482f
Replace hackish support for amr-nb and amr-wb. Instead of including the source
diego
parents:
4842
diff
changeset
|
276 #include <amrwb/if_rom.h> |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
277 |
9669
09b3564c17e5
cosmetics: Move AMR-WB-specific code to the AMR-WB part of the file.
diego
parents:
9656
diff
changeset
|
278 static const char wb_bitrate_unsupported[] = |
09b3564c17e5
cosmetics: Move AMR-WB-specific code to the AMR-WB part of the file.
diego
parents:
9656
diff
changeset
|
279 "bitrate not supported: use one of 6.6k, 8.85k, 12.65k, 14.25k, 15.85k, 18.25k, 19.85k, 23.05k, or 23.85k\n"; |
09b3564c17e5
cosmetics: Move AMR-WB-specific code to the AMR-WB part of the file.
diego
parents:
9656
diff
changeset
|
280 |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
281 /* Common code for fixed and float version*/ |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
282 typedef struct AMRWB_bitrates { |
4744 | 283 int rate; |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
284 int mode; |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
285 } AMRWB_bitrates; |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
286 |
9652
356079de3642
cosmetics: Move some more code around to avoid #ifdeffery.
diego
parents:
9651
diff
changeset
|
287 typedef struct AMRWBContext { |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
288 int frameCount; |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
289 void *state; |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
290 int mode; |
9652
356079de3642
cosmetics: Move some more code around to avoid #ifdeffery.
diego
parents:
9651
diff
changeset
|
291 Word16 allow_dtx; |
356079de3642
cosmetics: Move some more code around to avoid #ifdeffery.
diego
parents:
9651
diff
changeset
|
292 } AMRWBContext; |
356079de3642
cosmetics: Move some more code around to avoid #ifdeffery.
diego
parents:
9651
diff
changeset
|
293 |
9653
a572a4628a5a
Surround AMR_WB encoding code by appropriate #ifdefs.
diego
parents:
9652
diff
changeset
|
294 #if CONFIG_LIBAMR_WB_ENCODER |
a572a4628a5a
Surround AMR_WB encoding code by appropriate #ifdefs.
diego
parents:
9652
diff
changeset
|
295 |
9652
356079de3642
cosmetics: Move some more code around to avoid #ifdeffery.
diego
parents:
9651
diff
changeset
|
296 #include <amrwb/enc_if.h> |
356079de3642
cosmetics: Move some more code around to avoid #ifdeffery.
diego
parents:
9651
diff
changeset
|
297 |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
298 static int getWBBitrateMode(int bitrate) |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
299 { |
4744 | 300 /* make the correspondance between bitrate and mode */ |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
301 AMRWB_bitrates rates[] = { { 6600, 0}, |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
302 { 8850, 1}, |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
303 {12650, 2}, |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
304 {14250, 3}, |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
305 {15850, 4}, |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
306 {18250, 5}, |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
307 {19850, 6}, |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
308 {23050, 7}, |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
309 {23850, 8}, }; |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
310 int i; |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
311 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
312 for (i = 0; i < 9; i++) |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
313 if (rates[i].rate == bitrate) |
6750 | 314 return rates[i].mode; |
4744 | 315 /* no bitrate matching, return an error */ |
316 return -1; | |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
317 } |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
318 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
319 static av_cold int amr_wb_encode_init(AVCodecContext *avctx) |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
320 { |
4634 | 321 AMRWBContext *s = avctx->priv_data; |
4633 | 322 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
323 s->frameCount = 0; |
2967 | 324 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
325 if (avctx->sample_rate != 16000) { |
4309
1f95aa362562
always print message when error, AV_LOG_DEBUG -> AV_LOG_ERROR
bcoudurier
parents:
4221
diff
changeset
|
326 av_log(avctx, AV_LOG_ERROR, "Only 16000Hz sample rate supported\n"); |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
327 return -1; |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
328 } |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
329 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
330 if (avctx->channels != 1) { |
4309
1f95aa362562
always print message when error, AV_LOG_DEBUG -> AV_LOG_ERROR
bcoudurier
parents:
4221
diff
changeset
|
331 av_log(avctx, AV_LOG_ERROR, "Only mono supported\n"); |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
332 return -1; |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
333 } |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
334 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
335 if ((s->mode = getWBBitrateMode(avctx->bit_rate)) < 0) { |
4793
e69d9ecaaf84
Print a list of valid AMR bitrates if a wrong one is used.
diego
parents:
4789
diff
changeset
|
336 av_log(avctx, AV_LOG_ERROR, wb_bitrate_unsupported); |
4744 | 337 return -1; |
338 } | |
339 | |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
340 avctx->frame_size = 320; |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
341 avctx->coded_frame = avcodec_alloc_frame(); |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
342 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
343 s->state = E_IF_init(); |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
344 s->allow_dtx = 0; |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
345 |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
346 return 0; |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
347 } |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
348 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
349 static int amr_wb_encode_close(AVCodecContext *avctx) |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
350 { |
4634 | 351 AMRWBContext *s = avctx->priv_data; |
4633 | 352 |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
353 E_IF_exit(s->state); |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
354 av_freep(&avctx->coded_frame); |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
355 s->frameCount++; |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
356 return 0; |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
357 } |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
358 |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
359 static int amr_wb_encode_frame(AVCodecContext *avctx, |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
360 unsigned char *frame/*out*/, |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
361 int buf_size, void *data/*in*/) |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
362 { |
4634 | 363 AMRWBContext *s = avctx->priv_data; |
4220
4115a044e31d
allow amr bitrate to be changed "on the fly" through avctx->bitrate.
gpoirier
parents:
4094
diff
changeset
|
364 int size; |
4632
260b5f667458
Move the initialization on context definition. In amr.c, only the
takis
parents:
4575
diff
changeset
|
365 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
366 if ((s->mode = getWBBitrateMode(avctx->bit_rate)) < 0) { |
4793
e69d9ecaaf84
Print a list of valid AMR bitrates if a wrong one is used.
diego
parents:
4789
diff
changeset
|
367 av_log(avctx, AV_LOG_ERROR, wb_bitrate_unsupported); |
4744 | 368 return -1; |
369 } | |
4220
4115a044e31d
allow amr bitrate to be changed "on the fly" through avctx->bitrate.
gpoirier
parents:
4094
diff
changeset
|
370 size = E_IF_encode(s->state, s->mode, data, frame, s->allow_dtx); |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
371 return size; |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
372 } |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
373 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
374 AVCodec libamr_wb_encoder = { |
9651
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
375 "libamr_wb", |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
376 CODEC_TYPE_AUDIO, |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
377 CODEC_ID_AMR_WB, |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
378 sizeof(AMRWBContext), |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
379 amr_wb_encode_init, |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
380 amr_wb_encode_frame, |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
381 amr_wb_encode_close, |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
382 NULL, |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
383 .sample_fmts = (enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE}, |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
384 .long_name = NULL_IF_CONFIG_SMALL("libamr-wb Adaptive Multi-Rate (AMR) Wide-Band"), |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
385 }; |
e5ea408f6e2a
cosmetics: Move functions around so that encoding and decoding functions are
diego
parents:
9650
diff
changeset
|
386 |
9653
a572a4628a5a
Surround AMR_WB encoding code by appropriate #ifdefs.
diego
parents:
9652
diff
changeset
|
387 #endif |
a572a4628a5a
Surround AMR_WB encoding code by appropriate #ifdefs.
diego
parents:
9652
diff
changeset
|
388 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
389 static av_cold int amr_wb_decode_init(AVCodecContext *avctx) |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
390 { |
4634 | 391 AMRWBContext *s = avctx->priv_data; |
4633 | 392 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
393 s->frameCount = 0; |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
394 s->state = D_IF_init(); |
4094 | 395 |
396 amr_decode_fix_avctx(avctx); | |
397 | |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
398 if (avctx->channels > 1) { |
4094 | 399 av_log(avctx, AV_LOG_ERROR, "amr_wb: multichannel decoding not supported\n"); |
400 return -1; | |
401 } | |
402 | |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
403 return 0; |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
404 } |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
405 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
406 static int amr_wb_decode_frame(AVCodecContext *avctx, void *data, |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
407 int *data_size, AVPacket *avpkt) |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
408 { |
9355
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9007
diff
changeset
|
409 const uint8_t *buf = avpkt->data; |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
410 int buf_size = avpkt->size; |
4634 | 411 AMRWBContext *s = avctx->priv_data; |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
412 const uint8_t *amrData = buf; |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
413 int mode; |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
414 int packet_size; |
9677 | 415 static const uint8_t block_size[16] = {18, 24, 33, 37, 41, 47, 51, 59, 61, 6, 6, 0, 0, 0, 1, 1}; |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
416 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
417 if (!buf_size) |
2287
679642dc54cf
segfault in amr decoder fix patch by (Richard van der Hoff - richvdh0)
michael
parents:
2028
diff
changeset
|
418 /* nothing to do */ |
679642dc54cf
segfault in amr decoder fix patch by (Richard van der Hoff - richvdh0)
michael
parents:
2028
diff
changeset
|
419 return 0; |
679642dc54cf
segfault in amr decoder fix patch by (Richard van der Hoff - richvdh0)
michael
parents:
2028
diff
changeset
|
420 |
679642dc54cf
segfault in amr decoder fix patch by (Richard van der Hoff - richvdh0)
michael
parents:
2028
diff
changeset
|
421 mode = (amrData[0] >> 3) & 0x000F; |
679642dc54cf
segfault in amr decoder fix patch by (Richard van der Hoff - richvdh0)
michael
parents:
2028
diff
changeset
|
422 packet_size = block_size[mode]; |
679642dc54cf
segfault in amr decoder fix patch by (Richard van der Hoff - richvdh0)
michael
parents:
2028
diff
changeset
|
423 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
424 if (packet_size > buf_size) { |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
425 av_log(avctx, AV_LOG_ERROR, "amr frame too short (%u, should be %u)\n", |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
426 buf_size, packet_size + 1); |
2287
679642dc54cf
segfault in amr decoder fix patch by (Richard van der Hoff - richvdh0)
michael
parents:
2028
diff
changeset
|
427 return -1; |
679642dc54cf
segfault in amr decoder fix patch by (Richard van der Hoff - richvdh0)
michael
parents:
2028
diff
changeset
|
428 } |
2967 | 429 |
2287
679642dc54cf
segfault in amr decoder fix patch by (Richard van der Hoff - richvdh0)
michael
parents:
2028
diff
changeset
|
430 s->frameCount++; |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
431 D_IF_decode(s->state, amrData, data, _good_frame); |
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
432 *data_size = 320 * 2; |
2287
679642dc54cf
segfault in amr decoder fix patch by (Richard van der Hoff - richvdh0)
michael
parents:
2028
diff
changeset
|
433 return packet_size; |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
434 } |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
435 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
436 static int amr_wb_decode_close(AVCodecContext *avctx) |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
437 { |
4634 | 438 AMRWBContext *s = avctx->priv_data; |
4633 | 439 |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
440 D_IF_exit(s->state); |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
441 return 0; |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
442 } |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
443 |
9656
03361db4df10
cosmetics: K&R coding style, indent correctly, break overly long lines
diego
parents:
9655
diff
changeset
|
444 AVCodec libamr_wb_decoder = { |
4898
3df69e140c33
Give libamr decoders/encoders a lib prefix in the name.
diego
parents:
4858
diff
changeset
|
445 "libamr_wb", |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
446 CODEC_TYPE_AUDIO, |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
447 CODEC_ID_AMR_WB, |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
448 sizeof(AMRWBContext), |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
449 amr_wb_decode_init, |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
450 NULL, |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
451 amr_wb_decode_close, |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
452 amr_wb_decode_frame, |
7040
e943e1409077
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents:
6750
diff
changeset
|
453 .long_name = NULL_IF_CONFIG_SMALL("libamr-wb Adaptive Multi-Rate (AMR) Wide-Band"), |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
454 }; |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1297
diff
changeset
|
455 |
4898
3df69e140c33
Give libamr decoders/encoders a lib prefix in the name.
diego
parents:
4858
diff
changeset
|
456 #endif //CONFIG_LIBAMR_WB |