libavformat/gsmdec.c
Go to the documentation of this file.
1 /*
2  * RAW GSM demuxer
3  * Copyright (c) 2011 Justin Ruggles
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
23 #include "libavutil/mathematics.h"
24 #include "libavutil/opt.h"
25 #include "avformat.h"
26 #include "internal.h"
27 
28 #define GSM_BLOCK_SIZE 33
29 #define GSM_BLOCK_SAMPLES 160
30 #define GSM_SAMPLE_RATE 8000
31 
32 typedef struct {
33  AVClass *class;
36 
38 {
39  int ret, size;
40 
41  size = GSM_BLOCK_SIZE;
42 
43  pkt->pos = avio_tell(s->pb);
44  pkt->stream_index = 0;
45 
46  ret = av_get_packet(s->pb, pkt, size);
47  if (ret < GSM_BLOCK_SIZE) {
48  av_free_packet(pkt);
49  return ret < 0 ? ret : AVERROR(EIO);
50  }
51  pkt->duration = 1;
52  pkt->pts = pkt->pos / GSM_BLOCK_SIZE;
53 
54  return 0;
55 }
56 
58 {
61  if (!st)
62  return AVERROR(ENOMEM);
63 
66  st->codec->channels = 1;
68  st->codec->sample_rate = c->sample_rate;
70 
72 
73  return 0;
74 }
75 
76 static const AVOption options[] = {
77  { "sample_rate", "", offsetof(GSMDemuxerContext, sample_rate),
78  AV_OPT_TYPE_INT, {.i64 = GSM_SAMPLE_RATE}, 1, INT_MAX / GSM_BLOCK_SIZE,
80  { NULL },
81 };
82 
83 static const AVClass class = {
84  .class_name = "gsm demuxer",
85  .item_name = av_default_item_name,
86  .option = options,
88 };
89 
91  .name = "gsm",
92  .long_name = NULL_IF_CONFIG_SMALL("raw GSM"),
93  .priv_data_size = sizeof(GSMDemuxerContext),
97  .extensions = "gsm",
98  .raw_codec_id = AV_CODEC_ID_GSM,
99  .priv_class = &class,
100 };
const char * s
Definition: avisynth_c.h:668
void av_free_packet(AVPacket *pkt)
Free a packet.
Definition: avpacket.c:242
AVOption.
Definition: opt.h:251
av_default_item_name
int64_t pos
byte position in stream, -1 if unknown
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
static const AVOption options[]
Format I/O context.
Definition: avformat.h:944
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:55
AVOptions.
static AVPacket pkt
Definition: demuxing.c:56
#define GSM_BLOCK_SIZE
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
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.
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:248
int duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
int size
uint64_t channel_layout
Audio channel layout.
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:662
int bit_rate
the average bitrate
audio channel layout utility functions
ret
Definition: avfilter.c:821
#define GSM_SAMPLE_RATE
LIBAVUTIL_VERSION_INT
Definition: eval.c:55
static int gsm_read_header(AVFormatContext *s)
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:517
Stream structure.
Definition: avformat.h:643
NULL
Definition: eval.c:55
sample_rate
enum AVMediaType codec_type
enum AVCodecID codec_id
int sample_rate
samples per second
AVIOContext * pb
I/O context.
Definition: avformat.h:977
#define GSM_BLOCK_SAMPLES
static int read_packet(AVFormatContext *ctx, AVPacket *pkt)
Definition: libcdio.c:114
Describe the class of an AVClass context structure.
Definition: log.h:50
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:353
#define AV_OPT_FLAG_DECODING_PARAM
a generic parameter which can be set by the user for demuxing or decoding
Definition: opt.h:282
AVInputFormat ff_gsm_demuxer
static int gsm_read_packet(AVFormatContext *s, AVPacket *pkt)
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFilterBuffer structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later.That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another.Buffer references ownership and permissions
int raw_codec_id
Raw demuxers store their codec ID here.
Definition: avformat.h:500
static int flags
Definition: cpu.c:23
Main libavformat public API header.
static double c[64]
struct AVInputFormat * iformat
Can only be iformat or oformat, not both at the same time.
Definition: avformat.h:957
as in Berlin toast format
int channels
number of audio channels
void * priv_data
Format private data.
Definition: avformat.h:964
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:461
#define AV_CH_LAYOUT_MONO
This structure stores compressed data.
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...