FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavformat/g726.c
Date: 2024-04-23 16:28:37
Exec Total Coverage
Lines: 0 17 0.0%
Functions: 0 2 0.0%
Branches: 0 4 0.0%

Line Branch Exec Source
1 /*
2 * G.726 raw demuxer
3 * Copyright 2017 Carl Eugen Hoyos
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 "config_components.h"
23
24 #include "avformat.h"
25 #include "demux.h"
26 #include "internal.h"
27 #include "libavutil/opt.h"
28
29 typedef struct G726Context {
30 AVClass *class;
31 int code_size;
32 int sample_rate;
33 } G726Context;
34
35 static int g726_read_header(AVFormatContext *s)
36 {
37 G726Context *c = s->priv_data;
38 AVStream *st = avformat_new_stream(s, NULL);
39 if (!st)
40 return AVERROR(ENOMEM);
41
42 st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
43 st->codecpar->codec_id = ffifmt(s->iformat)->raw_codec_id;
44
45 st->codecpar->sample_rate = c->sample_rate;
46 st->codecpar->bits_per_coded_sample = c->code_size;
47 st->codecpar->bit_rate = ((int[]){ 16000, 24000, 32000, 40000 })[c->code_size - 2];
48 st->codecpar->ch_layout.nb_channels = 1;
49
50 return 0;
51 }
52
53 static int g726_read_packet(AVFormatContext *s, AVPacket *pkt)
54 {
55 int res;
56 res = av_get_packet(s->pb, pkt, 1020); // a size similar to RAW_PACKET_SIZE divisible by all code_size values
57 if (res < 0)
58 return res;
59 return 0;
60 }
61
62 #define OFFSET(x) offsetof(G726Context, x)
63 static const AVOption options[] = {
64 { "code_size", "Bits per G.726 code",
65 OFFSET(code_size), AV_OPT_TYPE_INT, {.i64 = 4}, 2, 5, AV_OPT_FLAG_DECODING_PARAM },
66 { "sample_rate", "",
67 OFFSET(sample_rate), AV_OPT_TYPE_INT, {.i64 = 8000}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
68 { NULL },
69 };
70
71 static const AVClass g726_demuxer_class = {
72 .class_name = "G.726 demuxer",
73 .item_name = av_default_item_name,
74 .option = options,
75 .version = LIBAVUTIL_VERSION_INT,
76 };
77
78 #if CONFIG_G726_DEMUXER
79 const FFInputFormat ff_g726_demuxer = {
80 .p.name = "g726",
81 .p.long_name = NULL_IF_CONFIG_SMALL("raw big-endian G.726 (\"left aligned\")"),
82 .p.priv_class = &g726_demuxer_class,
83 .read_header = g726_read_header,
84 .read_packet = g726_read_packet,
85 .priv_data_size = sizeof(G726Context),
86 .raw_codec_id = AV_CODEC_ID_ADPCM_G726,
87 };
88 #endif
89
90 #if CONFIG_G726LE_DEMUXER
91 const FFInputFormat ff_g726le_demuxer = {
92 .p.name = "g726le",
93 .p.long_name = NULL_IF_CONFIG_SMALL("raw little-endian G.726 (\"right aligned\")"),
94 .p.priv_class = &g726_demuxer_class,
95 .read_header = g726_read_header,
96 .read_packet = g726_read_packet,
97 .priv_data_size = sizeof(G726Context),
98 .raw_codec_id = AV_CODEC_ID_ADPCM_G726LE,
99 };
100 #endif
101
102