FFmpeg
Loading...
Searching...
No Matches
rsd.c
Go to the documentation of this file.
1/*
2 * RSD demuxer
3 * Copyright (c) 2013 James Almer
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
23#include "avformat.h"
24#include "avio.h"
25#include "avio_internal.h"
26#include "demux.h"
27#include "internal.h"
28
29static const AVCodecTag rsd_tags[] = {
30 { AV_CODEC_ID_ADPCM_PSX, MKTAG('V','A','G',' ') },
31 { AV_CODEC_ID_ADPCM_THP_LE, MKTAG('G','A','D','P') },
32 { AV_CODEC_ID_ADPCM_THP, MKTAG('W','A','D','P') },
33 { AV_CODEC_ID_ADPCM_IMA_RAD, MKTAG('R','A','D','P') },
34 { AV_CODEC_ID_ADPCM_IMA_WAV, MKTAG('X','A','D','P') },
35 { AV_CODEC_ID_PCM_S16BE, MKTAG('P','C','M','B') },
36 { AV_CODEC_ID_PCM_S16LE, MKTAG('P','C','M',' ') },
37 { AV_CODEC_ID_XMA2, MKTAG('X','M','A',' ') },
38 { AV_CODEC_ID_NONE, 0 },
39};
40
41static const uint32_t rsd_unsupported_tags[] = {
42 MKTAG('O','G','G',' '),
43};
44
45static int rsd_probe(const AVProbeData *p)
46{
47 if (memcmp(p->buf, "RSD", 3) || p->buf[3] - '0' < 2 || p->buf[3] - '0' > 6)
48 return 0;
49 if (AV_RL32(p->buf + 8) > 256 || !AV_RL32(p->buf + 8))
50 return AVPROBE_SCORE_MAX / 8;
51 if (AV_RL32(p->buf + 16) > 8*48000 || !AV_RL32(p->buf + 16))
52 return AVPROBE_SCORE_MAX / 8;
53 return AVPROBE_SCORE_MAX;
54}
55
57{
58 AVIOContext *pb = s->pb;
59 int i, ret, version, start = 0x800;
62
63 if (!st)
64 return AVERROR(ENOMEM);
65
66 avio_skip(pb, 3); // "RSD"
67 version = avio_r8(pb) - '0';
68
69 par = st->codecpar;
71 par->codec_tag = avio_rl32(pb);
73 if (!par->codec_id) {
74 const char *tag_buf = av_fourcc2str(par->codec_tag);
75 for (i=0; i < FF_ARRAY_ELEMS(rsd_unsupported_tags); i++) {
76 if (par->codec_tag == rsd_unsupported_tags[i]) {
77 avpriv_request_sample(s, "Codec tag: %s", tag_buf);
79 }
80 }
81 av_log(s, AV_LOG_ERROR, "Unknown codec tag: %s\n", tag_buf);
83 }
84
86 if (par->ch_layout.nb_channels <= 0 || par->ch_layout.nb_channels > INT_MAX / 36) {
87 av_log(s, AV_LOG_ERROR, "Invalid number of channels: %d\n", par->ch_layout.nb_channels);
89 }
90
91 avio_skip(pb, 4); // Bit depth
92 par->sample_rate = avio_rl32(pb);
93 if (!par->sample_rate)
95
96 avio_skip(pb, 4); // Unknown
97
98 switch (par->codec_id) {
100 par->block_align = 2048;
101 if ((ret = ff_alloc_extradata(par, 34)) < 0)
102 return ret;
103 memset(par->extradata, 0, 34);
104 break;
106 par->block_align = 16 * par->ch_layout.nb_channels;
107 break;
109 par->block_align = 20 * par->ch_layout.nb_channels;
110 break;
112 if (version == 2)
113 start = avio_rl32(pb);
114
115 par->bits_per_coded_sample = 4;
116 par->block_align = 36 * par->ch_layout.nb_channels;
117 break;
119 /* RSD3GADP is mono, so only alloc enough memory
120 to store the coeff table for a single channel. */
121
122 start = avio_rl32(pb);
123
124 if ((ret = ff_get_extradata(s, par, s->pb, 32)) < 0)
125 return ret;
126 break;
128 par->block_align = 8 * par->ch_layout.nb_channels;
129 avio_skip(s->pb, 0x1A4 - avio_tell(s->pb));
130
131 if ((ret = ff_alloc_extradata(st->codecpar, 32 * par->ch_layout.nb_channels)) < 0)
132 return ret;
133
134 for (i = 0; i < par->ch_layout.nb_channels; i++) {
135 ret = ffio_read_size(s->pb, st->codecpar->extradata + 32 * i, 32);
136 if (ret < 0)
137 return ret;
138 avio_skip(s->pb, 8);
139 }
140 break;
143 if (version != 4)
144 start = avio_rl32(pb);
145
146 break;
147 }
148 if (start < 0)
149 return AVERROR_INVALIDDATA;
150
151 if (pb->seekable & AVIO_SEEKABLE_NORMAL) {
152 int64_t remaining = avio_size(pb);
153
154 if (remaining >= start && remaining - start <= INT_MAX)
155 switch (par->codec_id) {
160 st->duration = av_get_audio_frame_duration2(par, remaining - start);
161 break;
163 st->duration = (remaining - start) / (8 * par->ch_layout.nb_channels) * 14;
164 break;
167 st->duration = (remaining - start) / 2 / par->ch_layout.nb_channels;
168 }
169 }
170
171 avio_skip(pb, start - avio_tell(pb));
172 if (par->codec_id == AV_CODEC_ID_XMA2) {
173 avio_skip(pb, avio_rb32(pb) + avio_rb32(pb));
174 st->duration = avio_rb32(pb);
175 }
176
177 avpriv_set_pts_info(st, 64, 1, par->sample_rate);
178
179 return 0;
180}
181
183{
184 AVCodecParameters *par = s->streams[0]->codecpar;
185 int ret, size = 1024;
186 int64_t pos;
187
188 if (avio_feof(s->pb))
189 return AVERROR_EOF;
190
191 pos = avio_tell(s->pb);
195 par->codec_id == AV_CODEC_ID_XMA2) {
196 ret = av_get_packet(s->pb, pkt, par->block_align);
197 } else if (par->codec_tag == MKTAG('W','A','D','P') &&
198 par->ch_layout.nb_channels > 1) {
199 int i, ch;
200
201 ret = av_new_packet(pkt, par->block_align);
202 if (ret < 0)
203 return ret;
204 for (i = 0; i < 4; i++) {
205 for (ch = 0; ch < par->ch_layout.nb_channels; ch++) {
206 pkt->data[ch * 8 + i * 2 + 0] = avio_r8(s->pb);
207 pkt->data[ch * 8 + i * 2 + 1] = avio_r8(s->pb);
208 }
209 }
210 ret = 0;
211 } else {
212 ret = av_get_packet(s->pb, pkt, size);
213 }
214
215 if (par->codec_id == AV_CODEC_ID_XMA2 && pkt->size >= 1)
216 pkt->duration = (pkt->data[0] >> 2) * 512;
217
218 pkt->pos = pos;
219 pkt->stream_index = 0;
220
221 return ret;
222}
223
225 .p.name = "rsd",
226 .p.long_name = NULL_IF_CONFIG_SMALL("GameCube RSD"),
227 .p.extensions = "rsd",
228 .p.codec_tag = (const AVCodecTag* const []){rsd_tags, 0},
229 .p.flags = AVFMT_GENERIC_INDEX,
230 .read_probe = rsd_probe,
231 .read_header = rsd_read_header,
232 .read_packet = rsd_read_packet,
233};
const FFInputFormat ff_rsd_demuxer
Definition rsd.c:224
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 AVPROBE_SCORE_MAX
maximum score
Definition avformat.h:483
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 AVFMT_GENERIC_INDEX
Use generic index building code.
Definition avformat.h:499
Buffered I/O operations.
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
Definition avio.h:41
int64_t avio_size(AVIOContext *s)
Get the filesize.
Definition aviobuf.c:326
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
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition aviobuf.c:321
unsigned int avio_rl32(AVIOContext *s)
Definition aviobuf.c:733
unsigned int avio_rb32(AVIOContext *s)
Definition aviobuf.c:764
int avio_r8(AVIOContext *s)
Definition aviobuf.c:606
int ffio_read_size(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition aviobuf.c:665
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
#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
@ AV_CODEC_ID_PCM_S16LE
Definition codec_id.h:330
@ AV_CODEC_ID_XMA2
Definition codec_id.h:533
@ AV_CODEC_ID_NONE
Definition codec_id.h:48
@ AV_CODEC_ID_PCM_S16BE
Definition codec_id.h:331
@ AV_CODEC_ID_ADPCM_PSX
Definition codec_id.h:407
@ AV_CODEC_ID_ADPCM_THP
Definition codec_id.h:388
@ AV_CODEC_ID_ADPCM_IMA_WAV
Definition codec_id.h:371
@ AV_CODEC_ID_ADPCM_THP_LE
Definition codec_id.h:406
@ AV_CODEC_ID_ADPCM_IMA_RAD
Definition codec_id.h:404
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
Definition packet.c:98
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition error.h:64
#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
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
#define av_fourcc2str(fourcc)
Definition avutil.h:323
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
#define AV_RL32(p)
int av_get_audio_frame_duration2(AVCodecParameters *par, int frame_bytes)
Definition utils.c:823
int ff_alloc_extradata(AVCodecParameters *par, int size)
Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end which is always set to 0.
Definition utils.c:237
enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag)
Definition utils.c:143
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
version
Definition libkvazaar.c:313
#define MKTAG(a, b, c, d)
Definition macros.h:55
static int rsd_read_header(AVFormatContext *s)
Definition rsd.c:56
static int rsd_probe(const AVProbeData *p)
Definition rsd.c:45
static int rsd_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition rsd.c:182
static const uint32_t rsd_unsupported_tags[]
Definition rsd.c:41
static const AVCodecTag rsd_tags[]
Definition rsd.c:29
#define FF_ARRAY_ELEMS(a)
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
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
enum AVMediaType codec_type
General type of the encoded data.
Definition codec_par.h:53
int block_align
The number of bytes per coded audio frame, required by some formats.
Definition codec_par.h:221
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition codec_par.h:61
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
Bytestream IO Context.
Definition avio.h:160
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition avio.h:261
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
#define avpriv_request_sample(...)
#define av_log(a,...)
int size