3 * Copyright (c) 2007 Konstantin Shishkov
5 * This file is part of FFmpeg.
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.
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.
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
22 #include "libavutil/intreadwrite.h"
26 #define DXA_EXTRA_SIZE 9
33 int64_t wavpos, vidpos;
37 static int dxa_probe(AVProbeData *p)
42 w = AV_RB16(p->buf + 11);
43 h = AV_RB16(p->buf + 13);
44 /* check file header */
45 if (p->buf[0] == 'D' && p->buf[1] == 'E' &&
46 p->buf[2] == 'X' && p->buf[3] == 'A' &&
47 w && w <= 2048 && h && h <= 2048)
48 return AVPROBE_SCORE_MAX;
53 static int dxa_read_header(AVFormatContext *s, AVFormatParameters *ap)
55 AVIOContext *pb = s->pb;
56 DXAContext *c = s->priv_data;
66 if (tag != MKTAG('D', 'E', 'X', 'A'))
69 c->frames = avio_rb16(pb);
71 av_log(s, AV_LOG_ERROR, "File contains no frames ???\n");
90 st = avformat_new_stream(s, NULL);
94 // Parse WAV data header
95 if(avio_rl32(pb) == MKTAG('W', 'A', 'V', 'E')){
99 c->vidpos = avio_tell(pb) + size;
101 fsize = avio_rl32(pb);
103 ast = avformat_new_stream(s, NULL);
106 ret = ff_get_wav_header(pb, ast->codec, fsize);
110 while(avio_tell(pb) < c->vidpos && !url_feof(pb)){
112 fsize = avio_rl32(pb);
113 if(tag == MKTAG('d', 'a', 't', 'a')) break;
114 avio_skip(pb, fsize);
116 c->bpc = (fsize + c->frames - 1) / c->frames;
117 if(ast->codec->block_align)
118 c->bpc = ((c->bpc + ast->codec->block_align - 1) / ast->codec->block_align) * ast->codec->block_align;
119 c->bytes_left = fsize;
120 c->wavpos = avio_tell(pb);
121 avio_seek(pb, c->vidpos, SEEK_SET);
124 /* now we are ready: build format streams */
125 st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
126 st->codec->codec_id = CODEC_ID_DXA;
127 st->codec->width = w;
128 st->codec->height = h;
129 av_reduce(&den, &num, den, num, (1UL<<31)-1);
130 av_set_pts_info(st, 33, num, den);
131 /* flags & 0x80 means that image is interlaced,
132 * flags & 0x40 means that image has double height
133 * either way set true height
136 st->codec->height >>= 1;
138 c->readvid = !c->has_sound;
139 c->vidpos = avio_tell(pb);
141 s->duration = (int64_t)c->frames * AV_TIME_BASE * num / den;
142 av_log(s, AV_LOG_DEBUG, "%d frame(s)\n",c->frames);
147 static int dxa_read_packet(AVFormatContext *s, AVPacket *pkt)
149 DXAContext *c = s->priv_data;
152 uint8_t buf[DXA_EXTRA_SIZE], pal[768+4];
155 if(!c->readvid && c->has_sound && c->bytes_left){
157 avio_seek(s->pb, c->wavpos, SEEK_SET);
158 size = FFMIN(c->bytes_left, c->bpc);
159 ret = av_get_packet(s->pb, pkt, size);
160 pkt->stream_index = 1;
163 c->bytes_left -= size;
164 c->wavpos = avio_tell(s->pb);
167 avio_seek(s->pb, c->vidpos, SEEK_SET);
168 while(!url_feof(s->pb) && c->frames){
169 avio_read(s->pb, buf, 4);
170 switch(AV_RL32(buf)){
171 case MKTAG('N', 'U', 'L', 'L'):
172 if(av_new_packet(pkt, 4 + pal_size) < 0)
173 return AVERROR(ENOMEM);
174 pkt->stream_index = 0;
175 if(pal_size) memcpy(pkt->data, pal, pal_size);
176 memcpy(pkt->data + pal_size, buf, 4);
178 c->vidpos = avio_tell(s->pb);
181 case MKTAG('C', 'M', 'A', 'P'):
184 avio_read(s->pb, pal + 4, 768);
186 case MKTAG('F', 'R', 'A', 'M'):
187 avio_read(s->pb, buf + 4, DXA_EXTRA_SIZE - 4);
188 size = AV_RB32(buf + 5);
190 av_log(s, AV_LOG_ERROR, "Frame size is too big: %d\n", size);
193 if(av_new_packet(pkt, size + DXA_EXTRA_SIZE + pal_size) < 0)
194 return AVERROR(ENOMEM);
195 memcpy(pkt->data + pal_size, buf, DXA_EXTRA_SIZE);
196 ret = avio_read(s->pb, pkt->data + DXA_EXTRA_SIZE + pal_size, size);
201 if(pal_size) memcpy(pkt->data, pal, pal_size);
202 pkt->stream_index = 0;
204 c->vidpos = avio_tell(s->pb);
208 av_log(s, AV_LOG_ERROR, "Unknown tag %c%c%c%c\n", buf[0], buf[1], buf[2], buf[3]);
215 AVInputFormat ff_dxa_demuxer = {
217 .long_name = NULL_IF_CONFIG_SMALL("DXA"),
218 .priv_data_size = sizeof(DXAContext),
219 .read_probe = dxa_probe,
220 .read_header = dxa_read_header,
221 .read_packet = dxa_read_packet,