FFmpeg
Loading...
Searching...
No Matches
rka.c
Go to the documentation of this file.
1/*
2 * RKA demuxer
3 * Copyright (c) 2023 Paul B Mahol
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/dict.h"
24
25#include "apetag.h"
26#include "avformat.h"
27#include "avio_internal.h"
28#include "demux.h"
29#include "internal.h"
30
31typedef struct RKAContext {
36
37static int rka_probe(const AVProbeData *p)
38{
39 if (AV_RL32(&p->buf[0]) == MKTAG('R', 'K', 'A', '7') &&
40 AV_RL32(&p->buf[4]) > 0 &&
41 AV_RL32(&p->buf[8]) > 0 &&
42 p->buf[12] > 0 &&
43 p->buf[12] <= 2 &&
44 (p->buf[13] == 8 || p->buf[13] == 16) &&
45 (p->buf[15] & 2) != 0)
46 return AVPROBE_SCORE_EXTENSION + 30;
47 return 0;
48}
49
51{
52 int64_t nb_samples, size_offset;
53 RKAContext *c = s->priv_data;
54 int channels, bps, samplerate;
56 int64_t framepos;
57 AVStream *st;
58 int ret;
59
61 if (!st)
62 return AVERROR(ENOMEM);
63
64 par = st->codecpar;
65 ret = ff_get_extradata(s, par, s->pb, 16);
66 if (ret < 0)
67 return ret;
68
69 nb_samples = AV_RL32(par->extradata + 4);
70 samplerate = AV_RL32(par->extradata + 8);
71 channels = par->extradata[12];
72 if (channels == 0)
74 bps = par->extradata[13];
75 if (bps < 8)
77 size_offset = avio_rl32(s->pb);
78 framepos = avio_tell(s->pb);
79 c->frame_size = 131072;
80
81 avpriv_set_pts_info(st, 64, 1, samplerate);
82 st->start_time = 0;
83
84 avio_seek(s->pb, size_offset, SEEK_SET);
85 c->total_frames = (nb_samples + c->frame_size - 1) / c->frame_size;
86 c->last_frame_size = nb_samples % c->frame_size;
87
88 for (int i = 0; i < c->total_frames; i++) {
89 int r, end = 0;
91
92 if (avio_feof(s->pb))
93 break;
94
95 size = avio_rl24(s->pb);
96 if (size == 0) {
97 end = 1;
98 size = size_offset - framepos;
99 if (size <= 0)
100 break;
101 }
102
103 if ((r = av_add_index_entry(st, framepos, (i * 131072LL) / (channels * (bps >> 3)),
104 size, 0, AVINDEX_KEYFRAME)) < 0)
105 return r;
106 framepos += size;
107
108 if (end)
109 break;
110 }
111
115 par->sample_rate = samplerate;
117 st->duration = 8LL*nb_samples / (channels * bps);
118
119 if (s->pb->seekable & AVIO_SEEKABLE_NORMAL)
121
122 avio_seek(s->pb, 20, SEEK_SET);
123
124 return 0;
125}
126
128{
129 RKAContext *c = s->priv_data;
130 AVStream *st = s->streams[0];
131 FFStream *const sti = ffstream(st);
132 int size, ret;
133
134 if (avio_feof(s->pb))
135 return AVERROR_EOF;
136
137 if (c->currentframe >= sti->nb_index_entries)
138 return AVERROR_EOF;
139
140 size = sti->index_entries[c->currentframe].size;
141
142 ret = av_get_packet(s->pb, pkt, size);
143 pkt->dts = sti->index_entries[c->currentframe++].timestamp;
144 pkt->duration = c->currentframe == c->total_frames ? c->last_frame_size :
145 131072;
146 return ret;
147}
148
149static int rka_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
150{
151 RKAContext *c = s->priv_data;
152 AVStream *st = s->streams[stream_index];
153 int index = av_index_search_timestamp(st, timestamp, flags);
154 if (index < 0)
155 return -1;
156 if (avio_seek(s->pb, ffstream(st)->index_entries[index].pos, SEEK_SET) < 0)
157 return -1;
158
159 c->currentframe = index;
160
161 return 0;
162}
163
165 .p.name = "rka",
166 .p.long_name = NULL_IF_CONFIG_SMALL("RKA (RK Audio)"),
167 .p.extensions = "rka",
168 .priv_data_size = sizeof(RKAContext),
173};
const FFInputFormat ff_rka_demuxer
Definition rka.c:164
int64_t ff_ape_parse_tag(AVFormatContext *s)
Read and parse an APE tag.
Definition apetag.c:110
channels
Definition aptx.h:31
void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition avformat.c:834
Main libavformat public API header.
#define AVINDEX_KEYFRAME
Definition avformat.h:628
#define AVPROBE_SCORE_EXTENSION
score for file extension
Definition avformat.h:481
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
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition aviobuf.c:236
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
Definition avio.h:41
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
Definition aviobuf.c:349
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition avio.h:494
unsigned int avio_rl32(AVIOContext *s)
Definition aviobuf.c:733
unsigned int avio_rl24(AVIOContext *s)
Definition aviobuf.c:725
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
#define flags(name, subs,...)
Definition cbs_h264.c:74
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
static int read_probe(const AVProbeData *p)
Definition cdg.c:30
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
int ff_get_extradata(void *logctx, AVCodecParameters *par, AVIOContext *pb, int size)
Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end which is always set to 0 and f...
static AVPacket * pkt
Public dictionary API.
static int read_header(FFV1Context *f, RangeCoder *c)
Definition ffv1dec.c:578
@ AV_CODEC_ID_RKA
Definition codec_id.h:555
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
int av_add_index_entry(AVStream *st, int64_t pos, int64_t timestamp, int size, int distance, int flags)
Add an index entry into a sorted list.
Definition seek.c:122
int av_index_search_timestamp(AVStream *st, int64_t timestamp, int flags)
Get the index for a specific timestamp.
Definition seek.c:245
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR_EOF
End of file.
Definition error.h:57
#define AVERROR(e)
Definition error.h:45
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
int index
Definition gxfenc.c:90
#define r
Definition input.c:42
#define AV_RL32(p)
static av_always_inline FFStream * ffstream(AVStream *st)
Definition internal.h:365
static int rka_read_header(AVFormatContext *s)
Definition rka.c:50
static int rka_probe(const AVProbeData *p)
Definition rka.c:37
static int rka_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition rka.c:127
static int rka_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition rka.c:149
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
Definition libcdio.c:151
#define MKTAG(a, b, c, d)
Definition macros.h:55
unsigned bps
Definition movenc.c:2074
unsigned int pos
Definition spdifenc.c:431
int nb_channels
Number of channels in this layout.
This struct describes the properties of an encoded stream.
Definition codec_par.h:49
AVChannelLayout ch_layout
The channel layout and number of channels.
Definition codec_par.h:207
enum AVMediaType codec_type
General type of the encoded data.
Definition codec_par.h:53
int bits_per_raw_sample
The number of valid bits in each output sample.
Definition codec_par.h:130
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition codec_par.h:71
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
int64_t timestamp
Timestamp in AVStream.time_base units, preferably the time from which on correctly decoded frames are...
Definition avformat.h:622
This structure stores compressed data.
Definition packet.h:580
This structure contains the data a format has to probe a file.
Definition avformat.h:471
Stream structure.
Definition avformat.h:766
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition avformat.h:789
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition avformat.h:825
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base.
Definition avformat.h:815
int nb_index_entries
Definition internal.h:193
AVIndexEntry * index_entries
Only used if the format does not support seeking natively.
Definition internal.h:191
int last_frame_size
Definition rka.c:34
int total_frames
Definition rka.c:32
int currentframe
Definition rka.c:32
int frame_size
Definition rka.c:33
int size
static double c[64]