Coverage Report

Created: 2024-09-06 07:53

/src/ffmpeg/libavformat/gsmdec.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * RAW GSM demuxer
3
 * Copyright (c) 2011 Justin Ruggles
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
#include "libavutil/channel_layout.h"
23
#include "libavutil/mathematics.h"
24
#include "libavutil/opt.h"
25
#include "avformat.h"
26
#include "demux.h"
27
#include "internal.h"
28
29
642k
#define GSM_BLOCK_SIZE    33
30
10.7k
#define GSM_BLOCK_SAMPLES 160
31
5.35k
#define GSM_SAMPLE_RATE   8000
32
33
typedef struct GSMDemuxerContext {
34
    AVClass *class;
35
    int sample_rate;
36
} GSMDemuxerContext;
37
38
static int gsm_probe(const AVProbeData *p)
39
358k
{
40
358k
    int valid = 0, invalid = 0;
41
358k
    uint8_t *b = p->buf;
42
43.0M
    while (b < p->buf + p->buf_size - 32) {
43
42.6M
        if ((*b & 0xf0) == 0xd0) {
44
1.23M
            valid++;
45
41.4M
        } else {
46
41.4M
            invalid++;
47
41.4M
        }
48
42.6M
        b += 33;
49
42.6M
    }
50
358k
    if (valid >> 5 > invalid)
51
73
        return AVPROBE_SCORE_EXTENSION + 1;
52
358k
    return 0;
53
358k
}
54
55
static int gsm_read_packet(AVFormatContext *s, AVPacket *pkt)
56
215k
{
57
215k
    int ret, size;
58
59
215k
    size = GSM_BLOCK_SIZE;
60
61
215k
    pkt->pos = avio_tell(s->pb);
62
215k
    pkt->stream_index = 0;
63
64
215k
    ret = av_get_packet(s->pb, pkt, size);
65
215k
    if (ret < GSM_BLOCK_SIZE) {
66
9.93k
        return ret < 0 ? ret : AVERROR(EIO);
67
9.93k
    }
68
205k
    pkt->duration = 1;
69
205k
    pkt->pts      = pkt->pos / GSM_BLOCK_SIZE;
70
71
205k
    return 0;
72
215k
}
73
74
static int gsm_read_header(AVFormatContext *s)
75
5.35k
{
76
5.35k
    GSMDemuxerContext *c = s->priv_data;
77
5.35k
    AVStream *st = avformat_new_stream(s, NULL);
78
5.35k
    if (!st)
79
0
        return AVERROR(ENOMEM);
80
81
5.35k
    st->codecpar->codec_type  = AVMEDIA_TYPE_AUDIO;
82
5.35k
    st->codecpar->codec_id    = AV_CODEC_ID_GSM;
83
5.35k
    st->codecpar->ch_layout   = (AVChannelLayout)AV_CHANNEL_LAYOUT_MONO;
84
5.35k
    st->codecpar->sample_rate = c->sample_rate;
85
5.35k
    st->codecpar->bit_rate    = GSM_BLOCK_SIZE * 8 * c->sample_rate / GSM_BLOCK_SAMPLES;
86
87
5.35k
    avpriv_set_pts_info(st, 64, GSM_BLOCK_SAMPLES, GSM_SAMPLE_RATE);
88
89
5.35k
    return 0;
90
5.35k
}
91
92
static const AVOption options[] = {
93
    { "sample_rate", "", offsetof(GSMDemuxerContext, sample_rate),
94
       AV_OPT_TYPE_INT, {.i64 = GSM_SAMPLE_RATE}, 1, INT_MAX / GSM_BLOCK_SIZE,
95
       AV_OPT_FLAG_DECODING_PARAM },
96
    { NULL },
97
};
98
99
static const AVClass gsm_class = {
100
    .class_name = "gsm demuxer",
101
    .item_name  = av_default_item_name,
102
    .option     = options,
103
    .version    = LIBAVUTIL_VERSION_INT,
104
};
105
106
const FFInputFormat ff_gsm_demuxer = {
107
    .p.name         = "gsm",
108
    .p.long_name    = NULL_IF_CONFIG_SMALL("raw GSM"),
109
    .p.flags        = AVFMT_GENERIC_INDEX,
110
    .p.extensions   = "gsm",
111
    .p.priv_class   = &gsm_class,
112
    .priv_data_size = sizeof(GSMDemuxerContext),
113
    .read_probe     = gsm_probe,
114
    .read_header    = gsm_read_header,
115
    .read_packet    = gsm_read_packet,
116
    .raw_codec_id   = AV_CODEC_ID_GSM,
117
};