FFmpeg
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 
22 #include "libavutil/intreadwrite.h"
23 #include "avformat.h"
24 #include "avio.h"
25 #include "avio_internal.h"
26 #include "demux.h"
27 #include "internal.h"
28 
29 static 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 
41 static const uint32_t rsd_unsupported_tags[] = {
42  MKTAG('O','G','G',' '),
43 };
44 
45 static 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;
60  AVCodecParameters *par;
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);
78  return AVERROR_PATCHWELCOME;
79  }
80  }
81  av_log(s, AV_LOG_ERROR, "Unknown codec tag: %s\n", tag_buf);
82  return AVERROR_INVALIDDATA;
83  }
84 
85  par->ch_layout.nb_channels = avio_rl32(pb);
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);
88  return AVERROR_INVALIDDATA;
89  }
90 
91  avio_skip(pb, 4); // Bit depth
92  par->sample_rate = avio_rl32(pb);
93  if (!par->sample_rate)
94  return AVERROR_INVALIDDATA;
95 
96  avio_skip(pb, 4); // Unknown
97 
98  switch (par->codec_id) {
99  case AV_CODEC_ID_XMA2:
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);
192  if (par->codec_id == AV_CODEC_ID_ADPCM_IMA_RAD ||
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 };
AV_CODEC_ID_PCM_S16LE
@ AV_CODEC_ID_PCM_S16LE
Definition: codec_id.h:338
AVCodecParameters::extradata
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: codec_par.h:69
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
AVCodecParameters::codec_type
enum AVMediaType codec_type
General type of the encoded data.
Definition: codec_par.h:51
AVCodecParameters
This struct describes the properties of an encoded stream.
Definition: codec_par.h:47
avformat_new_stream
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:57
int64_t
long long int64_t
Definition: coverity.c:34
AVPacket::data
uint8_t * data
Definition: packet.h:588
AVPacket::duration
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: packet.h:606
AVCodecParameters::codec_tag
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition: codec_par.h:59
AVChannelLayout::nb_channels
int nb_channels
Number of channels in this layout.
Definition: channel_layout.h:329
avio_size
int64_t avio_size(AVIOContext *s)
Get the filesize.
Definition: aviobuf.c:326
AV_CODEC_ID_ADPCM_THP_LE
@ AV_CODEC_ID_ADPCM_THP_LE
Definition: codec_id.h:413
ff_get_extradata
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...
Definition: demux_utils.c:340
AVPROBE_SCORE_MAX
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:463
avpriv_set_pts_info
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:781
AV_CODEC_ID_PCM_S16BE
@ AV_CODEC_ID_PCM_S16BE
Definition: codec_id.h:339
avio_tell
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:494
AVFMT_GENERIC_INDEX
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:479
AVStream::duration
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:803
avio_rb32
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:764
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:210
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen.c:29
AVCodecTag
Definition: internal.h:42
intreadwrite.h
s
#define s(width, name)
Definition: cbs_vp9.c:198
av_new_packet
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
AVInputFormat::name
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:549
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:201
AVFormatContext
Format I/O context.
Definition: avformat.h:1263
internal.h
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:767
NULL
#define NULL
Definition: coverity.c:32
AVERROR_PATCHWELCOME
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:64
AVProbeData
This structure contains the data a format has to probe a file.
Definition: avformat.h:451
rsd_tags
static const AVCodecTag rsd_tags[]
Definition: rsd.c:29
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
avio_rl32
unsigned int avio_rl32(AVIOContext *s)
Definition: aviobuf.c:733
AVIOContext
Bytestream IO Context.
Definition: avio.h:160
AVPacket::size
int size
Definition: packet.h:589
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:94
ff_codec_get_id
enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag)
Definition: utils.c:143
AVIOContext::seekable
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:261
AV_CODEC_ID_ADPCM_IMA_RAD
@ AV_CODEC_ID_ADPCM_IMA_RAD
Definition: codec_id.h:411
i
#define i(width, name, range_min, range_max)
Definition: cbs_h264.c:63
size
int size
Definition: twinvq_data.h:10344
avio.h
av_get_audio_frame_duration2
int av_get_audio_frame_duration2(AVCodecParameters *par, int frame_bytes)
This function is the same as av_get_audio_frame_duration(), except it works with AVCodecParameters in...
Definition: utils.c:816
FFInputFormat::p
AVInputFormat p
The public AVInputFormat.
Definition: demux.h:70
avio_r8
int avio_r8(AVIOContext *s)
Definition: aviobuf.c:606
version
version
Definition: libkvazaar.c:313
ff_rsd_demuxer
const FFInputFormat ff_rsd_demuxer
Definition: rsd.c:224
AV_CODEC_ID_NONE
@ AV_CODEC_ID_NONE
Definition: codec_id.h:50
avio_internal.h
AVCodecParameters::block_align
int block_align
Audio only.
Definition: codec_par.h:191
rsd_read_header
static int rsd_read_header(AVFormatContext *s)
Definition: rsd.c:56
rsd_unsupported_tags
static const uint32_t rsd_unsupported_tags[]
Definition: rsd.c:41
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:98
rsd_probe
static int rsd_probe(const AVProbeData *p)
Definition: rsd.c:45
ret
ret
Definition: filter_design.txt:187
AVStream
Stream structure.
Definition: avformat.h:744
pos
unsigned int pos
Definition: spdifenc.c:414
avformat.h
AV_RL32
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:92
AVIO_SEEKABLE_NORMAL
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
Definition: avio.h:41
Windows::Graphics::DirectX::Direct3D11::p
IDirect3DDxgiInterfaceAccess _COM_Outptr_ void ** p
Definition: vsrc_gfxcapture_winrt.hpp:53
AVPacket::stream_index
int stream_index
Definition: packet.h:590
avio_skip
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:321
AV_CODEC_ID_ADPCM_THP
@ AV_CODEC_ID_ADPCM_THP
Definition: codec_id.h:395
AVCodecParameters::bits_per_coded_sample
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition: codec_par.h:110
rsd_read_packet
static int rsd_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: rsd.c:182
avpriv_request_sample
#define avpriv_request_sample(...)
Definition: tableprint_vlc.h:37
AV_CODEC_ID_XMA2
@ AV_CODEC_ID_XMA2
Definition: codec_id.h:540
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:565
AV_CODEC_ID_ADPCM_IMA_WAV
@ AV_CODEC_ID_ADPCM_IMA_WAV
Definition: codec_id.h:378
AVPacket::pos
int64_t pos
byte position in stream, -1 if unknown
Definition: packet.h:608
FFInputFormat
Definition: demux.h:66
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
MKTAG
#define MKTAG(a, b, c, d)
Definition: macros.h:55
ffio_read_size
int ffio_read_size(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:665
pkt
static AVPacket * pkt
Definition: demux_decode.c:55
AV_CODEC_ID_ADPCM_PSX
@ AV_CODEC_ID_ADPCM_PSX
Definition: codec_id.h:414
av_fourcc2str
#define av_fourcc2str(fourcc)
Definition: avutil.h:347
ff_alloc_extradata
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
avio_feof
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
Definition: aviobuf.c:349