Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | * gsm 06.10 decoder | ||
3 | * Copyright (c) 2010 Reimar Döffinger <Reimar.Doeffinger@gmx.de> | ||
4 | * | ||
5 | * This file is part of FFmpeg. | ||
6 | * | ||
7 | * FFmpeg is free software; you can redistribute it and/or | ||
8 | * modify it under the terms of the GNU Lesser General Public | ||
9 | * License as published by the Free Software Foundation; either | ||
10 | * version 2.1 of the License, or (at your option) any later version. | ||
11 | * | ||
12 | * FFmpeg is distributed in the hope that it will be useful, | ||
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
15 | * Lesser General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU Lesser General Public | ||
18 | * License along with FFmpeg; if not, write to the Free Software | ||
19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
20 | */ | ||
21 | |||
22 | /** | ||
23 | * @file | ||
24 | * GSM decoder | ||
25 | */ | ||
26 | |||
27 | #include "config_components.h" | ||
28 | |||
29 | #include "libavutil/channel_layout.h" | ||
30 | #include "avcodec.h" | ||
31 | #include "codec_internal.h" | ||
32 | #include "decode.h" | ||
33 | #include "get_bits.h" | ||
34 | #include "msgsmdec.h" | ||
35 | |||
36 | #include "gsmdec_template.c" | ||
37 | |||
38 | 4 | static av_cold int gsm_init(AVCodecContext *avctx) | |
39 | { | ||
40 | 4 | av_channel_layout_uninit(&avctx->ch_layout); | |
41 | 4 | avctx->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_MONO; | |
42 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
|
4 | if (!avctx->sample_rate) |
43 | ✗ | avctx->sample_rate = 8000; | |
44 | 4 | avctx->sample_fmt = AV_SAMPLE_FMT_S16; | |
45 | |||
46 |
2/3✓ Branch 0 taken 2 times.
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
|
4 | switch (avctx->codec_id) { |
47 | 2 | case AV_CODEC_ID_GSM: | |
48 | 2 | avctx->frame_size = GSM_FRAME_SIZE; | |
49 | 2 | avctx->block_align = GSM_BLOCK_SIZE; | |
50 | 2 | break; | |
51 | 2 | case AV_CODEC_ID_GSM_MS: | |
52 | 2 | avctx->frame_size = 2 * GSM_FRAME_SIZE; | |
53 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
|
2 | if (!avctx->block_align) |
54 | ✗ | avctx->block_align = GSM_MS_BLOCK_SIZE; | |
55 | else | ||
56 |
1/2✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
|
2 | if (avctx->block_align < MSN_MIN_BLOCK_SIZE || |
57 |
1/2✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
|
2 | avctx->block_align > GSM_MS_BLOCK_SIZE || |
58 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
|
2 | (avctx->block_align - MSN_MIN_BLOCK_SIZE) % 3) { |
59 | ✗ | av_log(avctx, AV_LOG_ERROR, "Invalid block alignment %d\n", | |
60 | avctx->block_align); | ||
61 | ✗ | return AVERROR_INVALIDDATA; | |
62 | } | ||
63 | } | ||
64 | |||
65 | 4 | return 0; | |
66 | } | ||
67 | |||
68 | 602 | static int gsm_decode_frame(AVCodecContext *avctx, AVFrame *frame, | |
69 | int *got_frame_ptr, AVPacket *avpkt) | ||
70 | { | ||
71 | int res; | ||
72 | GetBitContext gb; | ||
73 | 602 | const uint8_t *buf = avpkt->data; | |
74 | 602 | int buf_size = avpkt->size; | |
75 | int16_t *samples; | ||
76 | |||
77 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 602 times.
|
602 | if (buf_size < avctx->block_align) { |
78 | ✗ | av_log(avctx, AV_LOG_ERROR, "Packet is too small\n"); | |
79 | ✗ | return AVERROR_INVALIDDATA; | |
80 | } | ||
81 | |||
82 | /* get output buffer */ | ||
83 | 602 | frame->nb_samples = avctx->frame_size; | |
84 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 602 times.
|
602 | if ((res = ff_get_buffer(avctx, frame, 0)) < 0) |
85 | ✗ | return res; | |
86 | 602 | samples = (int16_t *)frame->data[0]; | |
87 | |||
88 |
2/3✓ Branch 0 taken 512 times.
✓ Branch 1 taken 90 times.
✗ Branch 2 not taken.
|
602 | switch (avctx->codec_id) { |
89 | 512 | case AV_CODEC_ID_GSM: | |
90 | 512 | init_get_bits(&gb, buf, buf_size * 8); | |
91 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 512 times.
|
512 | if (get_bits(&gb, 4) != 0xd) |
92 | ✗ | av_log(avctx, AV_LOG_WARNING, "Missing GSM magic!\n"); | |
93 | 512 | res = gsm_decode_block(avctx, samples, &gb, GSM_13000); | |
94 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 512 times.
|
512 | if (res < 0) |
95 | ✗ | return res; | |
96 | 512 | break; | |
97 | 90 | case AV_CODEC_ID_GSM_MS: | |
98 | 90 | res = ff_msgsm_decode_block(avctx, samples, buf, | |
99 | 90 | (GSM_MS_BLOCK_SIZE - avctx->block_align) / 3); | |
100 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 90 times.
|
90 | if (res < 0) |
101 | ✗ | return res; | |
102 | } | ||
103 | |||
104 | 602 | *got_frame_ptr = 1; | |
105 | |||
106 | 602 | return avctx->block_align; | |
107 | } | ||
108 | |||
109 | ✗ | static void gsm_flush(AVCodecContext *avctx) | |
110 | { | ||
111 | ✗ | GSMContext *s = avctx->priv_data; | |
112 | ✗ | memset(s, 0, sizeof(*s)); | |
113 | ✗ | } | |
114 | |||
115 | #if CONFIG_GSM_DECODER | ||
116 | const FFCodec ff_gsm_decoder = { | ||
117 | .p.name = "gsm", | ||
118 | CODEC_LONG_NAME("GSM"), | ||
119 | .p.type = AVMEDIA_TYPE_AUDIO, | ||
120 | .p.id = AV_CODEC_ID_GSM, | ||
121 | .priv_data_size = sizeof(GSMContext), | ||
122 | .init = gsm_init, | ||
123 | FF_CODEC_DECODE_CB(gsm_decode_frame), | ||
124 | .flush = gsm_flush, | ||
125 | .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_CHANNEL_CONF, | ||
126 | }; | ||
127 | #endif | ||
128 | #if CONFIG_GSM_MS_DECODER | ||
129 | const FFCodec ff_gsm_ms_decoder = { | ||
130 | .p.name = "gsm_ms", | ||
131 | CODEC_LONG_NAME("GSM Microsoft variant"), | ||
132 | .p.type = AVMEDIA_TYPE_AUDIO, | ||
133 | .p.id = AV_CODEC_ID_GSM_MS, | ||
134 | .priv_data_size = sizeof(GSMContext), | ||
135 | .init = gsm_init, | ||
136 | FF_CODEC_DECODE_CB(gsm_decode_frame), | ||
137 | .flush = gsm_flush, | ||
138 | .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_CHANNEL_CONF, | ||
139 | }; | ||
140 | #endif | ||
141 |