FFmpeg
aptxdec.c
Go to the documentation of this file.
1 /*
2  * RAW aptX demuxer
3  *
4  * Copyright (C) 2017 Aurelien Jacobs <aurel@gnuage.org>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 #include "config_components.h"
24 
25 #include "libavutil/opt.h"
26 #include "avformat.h"
27 #include "demux.h"
28 
29 #define APTX_BLOCK_SIZE 4
30 #define APTX_PACKET_SIZE (256*APTX_BLOCK_SIZE)
31 
32 #define APTX_HD_BLOCK_SIZE 6
33 #define APTX_HD_PACKET_SIZE (256*APTX_HD_BLOCK_SIZE)
34 
35 typedef struct AptXDemuxerContext {
36  AVClass *class;
39 
41 {
42  AptXDemuxerContext *s1 = s->priv_data;
44  if (!st)
45  return NULL;
49  st->codecpar->sample_rate = s1->sample_rate;
50  st->start_time = 0;
51  return st;
52 }
53 
55 {
57  if (!st)
58  return AVERROR(ENOMEM);
62  return 0;
63 }
64 
66 {
68  if (!st)
69  return AVERROR(ENOMEM);
73  return 0;
74 }
75 
77 {
78  int ret = av_get_packet(s->pb, pkt, APTX_PACKET_SIZE);
79  if (ret >= 0 && !(ret % APTX_BLOCK_SIZE))
81  return ret >= 0 ? 0 : ret;
82 }
83 
85 {
87  if (ret >= 0 && !(ret % APTX_HD_BLOCK_SIZE))
89  return ret >= 0 ? 0 : ret;
90 }
91 
92 static const AVOption aptx_options[] = {
93  { "sample_rate", "", offsetof(AptXDemuxerContext, sample_rate), AV_OPT_TYPE_INT, {.i64 = 48000}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
94  { NULL },
95 };
96 
97 static const AVClass aptx_demuxer_class = {
98  .class_name = "aptx (hd) demuxer",
99  .item_name = av_default_item_name,
100  .option = aptx_options,
101  .version = LIBAVUTIL_VERSION_INT,
102 };
103 
104 #if CONFIG_APTX_DEMUXER
106  .p.name = "aptx",
107  .p.long_name = NULL_IF_CONFIG_SMALL("raw aptX"),
108  .p.extensions = "aptx",
109  .p.flags = AVFMT_GENERIC_INDEX,
110  .p.priv_class = &aptx_demuxer_class,
111  .priv_data_size = sizeof(AptXDemuxerContext),
114 };
115 #endif
116 
117 #if CONFIG_APTX_HD_DEMUXER
119  .p.name = "aptx_hd",
120  .p.long_name = NULL_IF_CONFIG_SMALL("raw aptX HD"),
121  .p.extensions = "aptxhd",
122  .p.flags = AVFMT_GENERIC_INDEX,
123  .p.priv_class = &aptx_demuxer_class,
124  .priv_data_size = sizeof(AptXDemuxerContext),
127 };
128 #endif
aptx_hd_read_header
static int aptx_hd_read_header(AVFormatContext *s)
Definition: aptxdec.c:65
APTX_HD_BLOCK_SIZE
#define APTX_HD_BLOCK_SIZE
Definition: aptxdec.c:32
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame 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. Frame references ownership and permissions
opt.h
AptXDemuxerContext
Definition: aptxdec.c:35
AVCodecParameters::codec_type
enum AVMediaType codec_type
General type of the encoded data.
Definition: codec_par.h:51
aptx_options
static const AVOption aptx_options[]
Definition: aptxdec.c:92
avformat_new_stream
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
aptx_demuxer_class
static const AVClass aptx_demuxer_class
Definition: aptxdec.c:97
AVOption
AVOption.
Definition: opt.h:346
AV_SAMPLE_FMT_S32P
@ AV_SAMPLE_FMT_S32P
signed 32 bits, planar
Definition: samplefmt.h:65
AVChannelLayout::nb_channels
int nb_channels
Number of channels in this layout.
Definition: channel_layout.h:313
sample_rate
sample_rate
Definition: ffmpeg_filter.c:425
AVFMT_GENERIC_INDEX
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:480
aptx_hd_read_packet
static int aptx_hd_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: aptxdec.c:84
pkt
AVPacket * pkt
Definition: movenc.c:59
AV_PKT_FLAG_CORRUPT
#define AV_PKT_FLAG_CORRUPT
The packet content is corrupted.
Definition: packet.h:578
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_read_callback.c:41
s
#define s(width, name)
Definition: cbs_vp9.c:198
APTX_PACKET_SIZE
#define APTX_PACKET_SIZE
Definition: aptxdec.c:30
AVInputFormat::name
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:553
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
s1
#define s1
Definition: regdef.h:38
aptx_read_header
static int aptx_read_header(AVFormatContext *s)
Definition: aptxdec.c:54
aptx_read_header_common
static AVStream * aptx_read_header_common(AVFormatContext *s)
Definition: aptxdec.c:40
AVFormatContext
Format I/O context.
Definition: avformat.h:1255
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:766
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
read_header
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:550
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
NULL
#define NULL
Definition: coverity.c:32
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:237
AptXDemuxerContext::sample_rate
int sample_rate
Definition: aptxdec.c:37
AVCodecParameters::ch_layout
AVChannelLayout ch_layout
Audio only.
Definition: codec_par.h:180
AVCodecParameters::sample_rate
int sample_rate
Audio only.
Definition: codec_par.h:184
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:106
FFInputFormat::p
AVInputFormat p
The public AVInputFormat.
Definition: demux.h:35
AVPacket::flags
int flags
A combination of AV_PKT_FLAG values.
Definition: packet.h:528
AVCodecParameters::block_align
int block_align
Audio only.
Definition: codec_par.h:191
demux.h
av_get_packet
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:103
ff_aptx_hd_demuxer
const FFInputFormat ff_aptx_hd_demuxer
ret
ret
Definition: filter_design.txt:187
AVStream
Stream structure.
Definition: avformat.h:743
aptx_read_packet
static int aptx_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: aptxdec.c:76
AVClass::class_name
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:71
avformat.h
APTX_HD_PACKET_SIZE
#define APTX_HD_PACKET_SIZE
Definition: aptxdec.c:33
ff_aptx_demuxer
const FFInputFormat ff_aptx_demuxer
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:235
APTX_BLOCK_SIZE
#define APTX_BLOCK_SIZE
Definition: aptxdec.c:29
AV_OPT_FLAG_DECODING_PARAM
#define AV_OPT_FLAG_DECODING_PARAM
A generic parameter which can be set by the user for demuxing or decoding.
Definition: opt.h:273
AVCodecParameters::bits_per_coded_sample
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition: codec_par.h:110
AVCodecParameters::format
int format
Definition: codec_par.h:92
AVCodecParameters::codec_id
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: codec_par.h:55
AVPacket
This structure stores compressed data.
Definition: packet.h:499
FFInputFormat
Definition: demux.h:31
AVStream::start_time
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base.
Definition: avformat.h:792
AV_CODEC_ID_APTX
@ AV_CODEC_ID_APTX
Definition: codec_id.h:525
AV_CODEC_ID_APTX_HD
@ AV_CODEC_ID_APTX_HD
Definition: codec_id.h:526