47 #if CONFIG_LIBOPENCORE_AMRNB
49 #include <opencore-amrnb/interf_dec.h>
50 #include <opencore-amrnb/interf_enc.h>
63 #if CONFIG_LIBOPENCORE_AMRNB_DECODER
72 s->dec_state = Decoder_Interface_init();
85 Decoder_Interface_exit(s->dec_state);
95 int buf_size = avpkt->
size;
97 static const uint8_t block_size[16] = { 12, 13, 15, 17, 19, 20, 26, 31, 5, 0, 0, 0, 0, 0, 0, 0 };
101 av_dlog(avctx,
"amr_decode_frame buf=%p buf_size=%d frame_count=%d!!\n",
111 dec_mode = (buf[0] >> 3) & 0x000F;
112 packet_size = block_size[dec_mode] + 1;
114 if (packet_size > buf_size) {
116 buf_size, packet_size);
120 av_dlog(avctx,
"packet_size=%d buf= 0x%X %X %X %X\n",
121 packet_size, buf[0], buf[1], buf[2], buf[3]);
123 Decoder_Interface_Decode(s->dec_state, buf, (
short *)frame->
data[0], 0);
130 AVCodec ff_libopencore_amrnb_decoder = {
131 .
name =
"libopencore_amrnb",
136 .
init = amr_nb_decode_init,
137 .
close = amr_nb_decode_close,
138 .
decode = amr_nb_decode_frame,
143 #if CONFIG_LIBOPENCORE_AMRNB_ENCODER
145 typedef struct AMR_bitrates {
151 static int get_bitrate_mode(
int bitrate,
void *log_ctx)
154 static const AMR_bitrates
rates[] = {
155 { 4750, MR475 }, { 5150, MR515 }, { 5900, MR59 }, { 6700, MR67 },
156 { 7400, MR74 }, { 7950, MR795 }, { 10200, MR102 }, { 12200, MR122 }
158 int i, best = -1, min_diff = 0;
161 for (i = 0; i < 8; i++) {
162 if (rates[i].rate == bitrate)
163 return rates[i].mode;
164 if (best < 0 || abs(rates[i].rate - bitrate) < min_diff) {
166 min_diff = abs(rates[i].rate - bitrate);
170 snprintf(log_buf,
sizeof(log_buf),
"bitrate not supported: use one of ");
171 for (i = 0; i < 8; i++)
172 av_strlcatf(log_buf,
sizeof(log_buf),
"%.2fk, ", rates[i].rate / 1000.f);
173 av_strlcatf(log_buf,
sizeof(log_buf),
"using %.2fk", rates[best].rate / 1000.f);
206 s->enc_state = Encoder_Interface_init(s->enc_dtx);
213 s->enc_mode = get_bitrate_mode(avctx->
bit_rate, avctx);
223 Encoder_Interface_exit(s->enc_state);
229 const AVFrame *frame,
int *got_packet_ptr)
233 int16_t *flush_buf =
NULL;
234 const int16_t *
samples = frame ? (
const int16_t *)frame->
data[0] :
NULL;
237 s->enc_mode = get_bitrate_mode(avctx->
bit_rate, avctx);
251 memcpy(flush_buf, samples, frame->
nb_samples *
sizeof(*flush_buf));
254 s->enc_last_frame = -1;
261 if (s->enc_last_frame < 0)
267 s->enc_last_frame = -1;
270 written = Encoder_Interface_Encode(s->enc_state, s->enc_mode, samples,
272 av_dlog(avctx,
"amr_nb_encode_frame encoded %u bytes, bitrate %u, first byte was %#02x\n",
273 written, s->enc_mode, frame[0]);
279 avpkt->
size = written;
285 AVCodec ff_libopencore_amrnb_encoder = {
286 .
name =
"libopencore_amrnb",
291 .
init = amr_nb_encode_init,
292 .encode2 = amr_nb_encode_frame,
293 .
close = amr_nb_encode_close,
297 .priv_class = &
class,
304 #if CONFIG_LIBOPENCORE_AMRWB_DECODER
306 #include <opencore-amrwb/dec_if.h>
307 #include <opencore-amrwb/if_rom.h>
321 s->
state = D_IF_init();
327 int *got_frame_ptr,
AVPacket *avpkt)
331 int buf_size = avpkt->
size;
335 static const uint8_t block_size[16] = {18, 24, 33, 37, 41, 47, 51, 59, 61, 6, 6, 0, 0, 0, 1, 1};
344 mode = (buf[0] >> 3) & 0x000F;
345 packet_size = block_size[mode];
347 if (packet_size > buf_size) {
349 buf_size, packet_size + 1);
353 D_IF_decode(s->
state, buf, (
short *)frame->
data[0], _good_frame);
368 AVCodec ff_libopencore_amrwb_decoder = {
369 .
name =
"libopencore_amrwb",
374 .
init = amr_wb_decode_init,
375 .
close = amr_wb_decode_close,
376 .
decode = amr_wb_decode_frame,