FFmpeg
Loading...
Searching...
No Matches
sol.c
Go to the documentation of this file.
1/*
2 * Sierra SOL demuxer
3 * Copyright Konstantin Shishkov
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/*
23 * Based on documents from Game Audio Player and own research
24 */
25
28#include "avformat.h"
29#include "demux.h"
30#include "internal.h"
31#include "pcm.h"
32
33/* if we don't know the size in advance */
34#define AU_UNKNOWN_SIZE ((uint32_t)(~0))
35
36static int sol_probe(const AVProbeData *p)
37{
38 /* check file header */
39 uint16_t magic = AV_RL32(p->buf);
40 if ((magic == 0x0B8D || magic == 0x0C0D || magic == 0x0C8D) &&
41 p->buf[2] == 'S' && p->buf[3] == 'O' &&
42 p->buf[4] == 'L' && p->buf[5] == 0)
43 return AVPROBE_SCORE_MAX;
44 else
45 return 0;
46}
47
48#define SOL_DPCM 1
49#define SOL_16BIT 4
50#define SOL_STEREO 16
51
52static enum AVCodecID sol_codec_id(int magic, int type)
53{
54 if (type & SOL_DPCM)
56
57 if (magic == 0x0B8D)
58 return AV_CODEC_ID_PCM_U8;
59
60 if (type & SOL_16BIT)
62
63 return AV_CODEC_ID_PCM_U8;
64}
65
66static int sol_codec_type(int magic, int type)
67{
68 if (magic == 0x0B8D) return 1;//SOL_DPCM_OLD;
69 if (type & SOL_DPCM)
70 {
71 if (type & SOL_16BIT) return 3;//SOL_DPCM_NEW16;
72 else if (magic == 0x0C8D) return 1;//SOL_DPCM_OLD;
73 else return 2;//SOL_DPCM_NEW8;
74 }
75 return -1;
76}
77
78static int sol_channels(int magic, int type)
79{
80 if (magic == 0x0B8D || !(type & SOL_STEREO)) return 1;
81 return 2;
82}
83
85{
86 unsigned int magic,tag;
87 AVIOContext *pb = s->pb;
88 unsigned int id, channels, rate, type;
89 enum AVCodecID codec;
90 AVStream *st;
91
92 /* check ".snd" header */
93 magic = avio_rl16(pb);
94 tag = avio_rl32(pb);
95 if (tag != MKTAG('S', 'O', 'L', 0))
96 return -1;
97 rate = avio_rl16(pb);
98 type = avio_r8(pb);
99 avio_skip(pb, 4); /* size */
100 if (magic != 0x0B8D)
101 avio_r8(pb); /* newer SOLs contain padding byte */
102
103 codec = sol_codec_id(magic, type);
104 channels = sol_channels(magic, type);
105
106 if (codec == AV_CODEC_ID_SOL_DPCM)
107 id = sol_codec_type(magic, type);
108 else id = 0;
109
110 /* now we are ready: build format streams */
112 if (!st)
113 return -1;
115 st->codecpar->codec_tag = id;
116 st->codecpar->codec_id = codec;
118 st->codecpar->sample_rate = rate;
119 avpriv_set_pts_info(st, 64, 1, rate);
120 return 0;
121}
122
123#define MAX_SIZE 4096
124
126 AVPacket *pkt)
127{
128 int ret;
129
130 if (avio_feof(s->pb))
131 return AVERROR_EOF;
132
133 ret= av_get_packet(s->pb, pkt, MAX_SIZE);
134 if (ret < 0)
135 return ret;
136 pkt->flags &= ~AV_PKT_FLAG_CORRUPT;
137 pkt->stream_index = 0;
138 return 0;
139}
140
142 .p.name = "sol",
143 .p.long_name = NULL_IF_CONFIG_SMALL("Sierra SOL"),
144 .read_probe = sol_probe,
145 .read_header = sol_read_header,
146 .read_packet = sol_read_packet,
147 .read_seek = ff_pcm_read_seek,
148};
const FFInputFormat ff_sol_demuxer
Definition sol.c:141
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 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
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
Definition aviobuf.c:349
unsigned int avio_rl16(AVIOContext *s)
Definition aviobuf.c:717
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
int avio_r8(AVIOContext *s)
Definition aviobuf.c:606
#define s(width, name)
Definition cbs_vp9.c:198
Public libavutil channel layout APIs header.
#define NULL
Definition coverity.c:32
static AVPacket * pkt
enum AVCodecID id
Definition dts2pts.c:607
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition codec_id.h:47
@ AV_CODEC_ID_PCM_U8
Definition codec_id.h:335
@ AV_CODEC_ID_PCM_S16LE
Definition codec_id.h:330
@ AV_CODEC_ID_SOL_DPCM
Definition codec_id.h:445
#define AV_PKT_FLAG_CORRUPT
The packet content is corrupted.
Definition packet.h:651
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
void av_channel_layout_default(AVChannelLayout *ch_layout, int nb_channels)
Get the default channel layout for a given number of channels.
#define AVERROR_EOF
End of file.
Definition error.h:57
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
cl_device_type type
#define AV_RL32(p)
int ff_pcm_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition pcm.c:73
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
#define MKTAG(a, b, c, d)
Definition macros.h:55
uint32_t tag
Definition movenc.c:2087
static int sol_probe(const AVProbeData *p)
Definition sol.c:36
static int sol_channels(int magic, int type)
Definition sol.c:78
static int sol_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition sol.c:125
#define SOL_STEREO
Definition sol.c:50
static int sol_read_header(AVFormatContext *s)
Definition sol.c:84
#define SOL_DPCM
Definition sol.c:48
static enum AVCodecID sol_codec_id(int magic, int type)
Definition sol.c:52
#define SOL_16BIT
Definition sol.c:49
static int sol_codec_type(int magic, int type)
Definition sol.c:66
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
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition codec_par.h:61
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
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
#define MAX_SIZE
Definition vf_colormap.c:35