FFmpeg
Loading...
Searching...
No Matches
g726.c
Go to the documentation of this file.
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
29typedef struct G726Context {
30 AVClass *class;
31 int code_size;
34
36{
37 G726Context *c = s->priv_data;
39 if (!st)
40 return AVERROR(ENOMEM);
41
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];
49
50 return 0;
51}
52
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)
63static 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
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
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
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
const FFInputFormat ff_g726le_demuxer
const FFInputFormat ff_g726_demuxer
Main libavformat public API header.
int av_get_packet(AVIOContext *s, AVPacket *pkt, int size)
Allocate and read the payload of a packet and initialize its fields with default values.
Definition utils.c:98
#define s(width, name)
Definition cbs_vp9.c:198
#define NULL
Definition coverity.c:32
static const FFInputFormat * ffifmt(const AVInputFormat *fmt)
Definition demux.h:186
static AVPacket * pkt
#define OFFSET(x)
#define AV_OPT_FLAG_DECODING_PARAM
A generic parameter which can be set by the user for demuxing or decoding.
Definition opt.h:355
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258
@ AV_CODEC_ID_ADPCM_G726LE
Definition codec_id.h:405
@ AV_CODEC_ID_ADPCM_G726
Definition codec_id.h:381
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
#define AVERROR(e)
Definition error.h:45
const char * av_default_item_name(void *ptr)
Return the context name.
Definition log.c:241
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
#define LIBAVUTIL_VERSION_INT
Definition version.h:85
static int g726_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition g726.c:53
static const AVClass g726_demuxer_class
Definition g726.c:71
static int g726_read_header(AVFormatContext *s)
Definition g726.c:35
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
AVOptions.
int nb_channels
Number of channels in this layout.
Describe the class of an AVClass context structure.
Definition log.h:76
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition codec_par.h:113
AVChannelLayout ch_layout
The channel layout and number of channels.
Definition codec_par.h:207
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
Definition codec_par.h:99
enum AVMediaType codec_type
General type of the encoded data.
Definition codec_par.h:53
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition codec_par.h:57
int sample_rate
The number of audio samples per second.
Definition codec_par.h:213
Format I/O context.
Definition avformat.h:1333
AVOption.
Definition opt.h:428
This structure stores compressed data.
Definition packet.h:580
Stream structure.
Definition avformat.h:766
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition avformat.h:789
enum AVCodecID raw_codec_id
Raw demuxers store their codec ID here.
Definition demux.h:75
int code_size
Definition g726.c:100
int sample_rate
Definition g726.c:32
static double c[64]