2 * Beam Software SIFF demuxer
3 * Copyright (c) 2007 Konstantin Shishkov
5 * This file is part of Libav.
7 * Libav 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.
12 * Libav 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.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with Libav; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "libavutil/channel_layout.h"
23 #include "libavutil/intreadwrite.h"
29 TAG_SIFF = MKTAG('S', 'I', 'F', 'F'),
30 TAG_BODY = MKTAG('B', 'O', 'D', 'Y'),
31 TAG_VBHD = MKTAG('V', 'B', 'H', 'D'),
32 TAG_SHDR = MKTAG('S', 'H', 'D', 'R'),
33 TAG_VBV1 = MKTAG('V', 'B', 'V', '1'),
34 TAG_SOUN = MKTAG('S', 'O', 'U', 'N'),
41 VB_HAS_PALETTE = 0x10,
45 typedef struct SIFFContext {
64 static int siff_probe(AVProbeData *p)
66 uint32_t tag = AV_RL32(p->buf + 8);
67 /* check file header */
68 if (AV_RL32(p->buf) != TAG_SIFF ||
69 (tag != TAG_VBV1 && tag != TAG_SOUN))
71 return AVPROBE_SCORE_MAX;
74 static int create_audio_stream(AVFormatContext *s, SIFFContext *c)
77 ast = avformat_new_stream(s, NULL);
79 return AVERROR(ENOMEM);
80 ast->codec->codec_type = AVMEDIA_TYPE_AUDIO;
81 ast->codec->codec_id = AV_CODEC_ID_PCM_U8;
82 ast->codec->channels = 1;
83 ast->codec->channel_layout = AV_CH_LAYOUT_MONO;
84 ast->codec->bits_per_coded_sample = 8;
85 ast->codec->sample_rate = c->rate;
86 avpriv_set_pts_info(ast, 16, 1, c->rate);
91 static int siff_parse_vbv1(AVFormatContext *s, SIFFContext *c, AVIOContext *pb)
96 if (avio_rl32(pb) != TAG_VBHD) {
97 av_log(s, AV_LOG_ERROR, "Header chunk is missing\n");
98 return AVERROR_INVALIDDATA;
100 if (avio_rb32(pb) != 32) {
101 av_log(s, AV_LOG_ERROR, "Header chunk size is incorrect\n");
102 return AVERROR_INVALIDDATA;
104 if (avio_rl16(pb) != 1) {
105 av_log(s, AV_LOG_ERROR, "Incorrect header version\n");
106 return AVERROR_INVALIDDATA;
108 width = avio_rl16(pb);
109 height = avio_rl16(pb);
111 c->frames = avio_rl16(pb);
113 av_log(s, AV_LOG_ERROR, "File contains no frames ???\n");
114 return AVERROR_INVALIDDATA;
116 c->bits = avio_rl16(pb);
117 c->rate = avio_rl16(pb);
118 c->block_align = c->rate * (c->bits >> 3);
120 avio_skip(pb, 16); // zeroes
122 st = avformat_new_stream(s, NULL);
124 return AVERROR(ENOMEM);
125 st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
126 st->codec->codec_id = AV_CODEC_ID_VB;
127 st->codec->codec_tag = MKTAG('V', 'B', 'V', '1');
128 st->codec->width = width;
129 st->codec->height = height;
130 st->codec->pix_fmt = AV_PIX_FMT_PAL8;
131 avpriv_set_pts_info(st, 16, 1, 12);
135 c->has_audio = !!c->rate;
138 return create_audio_stream(s, c);
142 static int siff_parse_soun(AVFormatContext *s, SIFFContext *c, AVIOContext *pb)
144 if (avio_rl32(pb) != TAG_SHDR) {
145 av_log(s, AV_LOG_ERROR, "Header chunk is missing\n");
146 return AVERROR_INVALIDDATA;
148 if (avio_rb32(pb) != 8) {
149 av_log(s, AV_LOG_ERROR, "Header chunk size is incorrect\n");
150 return AVERROR_INVALIDDATA;
152 avio_skip(pb, 4); // unknown value
153 c->rate = avio_rl16(pb);
154 c->bits = avio_rl16(pb);
155 c->block_align = c->rate * (c->bits >> 3);
156 return create_audio_stream(s, c);
159 static int siff_read_header(AVFormatContext *s)
161 AVIOContext *pb = s->pb;
162 SIFFContext *c = s->priv_data;
166 if (avio_rl32(pb) != TAG_SIFF)
167 return AVERROR_INVALIDDATA;
168 avio_skip(pb, 4); // ignore size
171 if (tag != TAG_VBV1 && tag != TAG_SOUN) {
172 av_log(s, AV_LOG_ERROR, "Not a VBV file\n");
173 return AVERROR_INVALIDDATA;
176 if (tag == TAG_VBV1 && (ret = siff_parse_vbv1(s, c, pb)) < 0)
178 if (tag == TAG_SOUN && (ret = siff_parse_soun(s, c, pb)) < 0)
180 if (avio_rl32(pb) != MKTAG('B', 'O', 'D', 'Y')) {
181 av_log(s, AV_LOG_ERROR, "'BODY' chunk is missing\n");
182 return AVERROR_INVALIDDATA;
184 avio_skip(pb, 4); // ignore size
189 static int siff_read_packet(AVFormatContext *s, AVPacket *pkt)
191 SIFFContext *c = s->priv_data;
195 if (c->cur_frame >= c->frames)
197 if (c->curstrm == -1) {
198 c->pktsize = avio_rl32(s->pb) - 4;
199 c->flags = avio_rl16(s->pb);
200 c->gmcsize = (c->flags & VB_HAS_GMC) ? 4 : 0;
202 avio_read(s->pb, c->gmc, c->gmcsize);
203 c->sndsize = (c->flags & VB_HAS_AUDIO) ? avio_rl32(s->pb) : 0;
204 c->curstrm = !!(c->flags & VB_HAS_AUDIO);
208 size = c->pktsize - c->sndsize;
209 if (av_new_packet(pkt, size) < 0)
210 return AVERROR(ENOMEM);
211 AV_WL16(pkt->data, c->flags);
213 memcpy(pkt->data + 2, c->gmc, c->gmcsize);
214 avio_read(s->pb, pkt->data + 2 + c->gmcsize, size - c->gmcsize - 2);
215 pkt->stream_index = 0;
218 int pktsize = av_get_packet(s->pb, pkt, c->sndsize - 4);
221 pkt->stream_index = 1;
222 pkt->duration = pktsize;
225 if (!c->cur_frame || c->curstrm)
226 pkt->flags |= AV_PKT_FLAG_KEY;
227 if (c->curstrm == -1)
230 int pktsize = av_get_packet(s->pb, pkt, c->block_align);
233 pkt->duration = pktsize;
238 AVInputFormat ff_siff_demuxer = {
240 .long_name = NULL_IF_CONFIG_SMALL("Beam Software SIFF"),
241 .priv_data_size = sizeof(SIFFContext),
242 .read_probe = siff_probe,
243 .read_header = siff_read_header,
244 .read_packet = siff_read_packet,
245 .extensions = "vb,son",