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
)
39 /* check file header */
40 if (p
->buf
[0] == 'D' && p
->buf
[1] == 'E' &&
41 p
->buf
[2] == 'X' && p
->buf
[3] == 'A')
42 return AVPROBE_SCORE_MAX
;
47 static int dxa_read_header(AVFormatContext
*s
, AVFormatParameters
*ap
)
49 ByteIOContext
*pb
= s
->pb
;
50 DXAContext
*c
= s
->priv_data
;
59 if (tag
!= MKTAG('D', 'E', 'X', 'A'))
62 c
->frames
= get_be16(pb
);
64 av_log(s
, AV_LOG_ERROR
, "File contains no frames ???\n");
83 st
= av_new_stream(s
, 0);
87 // Parse WAV data header
88 if(get_le32(pb
) == MKTAG('W', 'A', 'V', 'E')){
92 c
->vidpos
= url_ftell(pb
) + size
;
96 ast
= av_new_stream(s
, 0);
99 get_wav_header(pb
, ast
->codec
, fsize
);
101 while(url_ftell(pb
) < c
->vidpos
&& !url_feof(pb
)){
103 fsize
= get_le32(pb
);
104 if(tag
== MKTAG('d', 'a', 't', 'a')) break;
105 url_fskip(pb
, fsize
);
107 c
->bpc
= (fsize
+ c
->frames
- 1) / c
->frames
;
108 if(ast
->codec
->block_align
)
109 c
->bpc
= ((c
->bpc
+ ast
->codec
->block_align
- 1) / ast
->codec
->block_align
) * ast
->codec
->block_align
;
110 c
->bytes_left
= fsize
;
111 c
->wavpos
= url_ftell(pb
);
112 url_fseek(pb
, c
->vidpos
, SEEK_SET
);
115 /* now we are ready: build format streams */
116 st
->codec
->codec_type
= CODEC_TYPE_VIDEO
;
117 st
->codec
->codec_id
= CODEC_ID_DXA
;
118 st
->codec
->width
= w
;
119 st
->codec
->height
= h
;
120 av_reduce(&den
, &num
, den
, num
, (1UL<<31)-1);
121 av_set_pts_info(st
, 33, num
, den
);
122 /* flags & 0x80 means that image is interlaced,
123 * flags & 0x40 means that image has double height
124 * either way set true height
127 st
->codec
->height
>>= 1;
129 c
->readvid
= !c
->has_sound
;
130 c
->vidpos
= url_ftell(pb
);
132 s
->duration
= (int64_t)c
->frames
* AV_TIME_BASE
* num
/ den
;
133 av_log(s
, AV_LOG_DEBUG
, "%d frame(s)\n",c
->frames
);
138 static int dxa_read_packet(AVFormatContext
*s
, AVPacket
*pkt
)
140 DXAContext
*c
= s
->priv_data
;
143 uint8_t buf
[DXA_EXTRA_SIZE
], pal
[768+4];
146 if(!c
->readvid
&& c
->has_sound
&& c
->bytes_left
){
148 url_fseek(s
->pb
, c
->wavpos
, SEEK_SET
);
149 size
= FFMIN(c
->bytes_left
, c
->bpc
);
150 ret
= av_get_packet(s
->pb
, pkt
, size
);
151 pkt
->stream_index
= 1;
154 c
->bytes_left
-= size
;
155 c
->wavpos
= url_ftell(s
->pb
);
158 url_fseek(s
->pb
, c
->vidpos
, SEEK_SET
);
159 while(!url_feof(s
->pb
) && c
->frames
){
160 get_buffer(s
->pb
, buf
, 4);
161 switch(AV_RL32(buf
)){
162 case MKTAG('N', 'U', 'L', 'L'):
163 if(av_new_packet(pkt
, 4 + pal_size
) < 0)
164 return AVERROR(ENOMEM
);
165 pkt
->stream_index
= 0;
166 if(pal_size
) memcpy(pkt
->data
, pal
, pal_size
);
167 memcpy(pkt
->data
+ pal_size
, buf
, 4);
169 c
->vidpos
= url_ftell(s
->pb
);
172 case MKTAG('C', 'M', 'A', 'P'):
175 get_buffer(s
->pb
, pal
+ 4, 768);
177 case MKTAG('F', 'R', 'A', 'M'):
178 get_buffer(s
->pb
, buf
+ 4, DXA_EXTRA_SIZE
- 4);
179 size
= AV_RB32(buf
+ 5);
181 av_log(s
, AV_LOG_ERROR
, "Frame size is too big: %d\n", size
);
184 if(av_new_packet(pkt
, size
+ DXA_EXTRA_SIZE
+ pal_size
) < 0)
185 return AVERROR(ENOMEM
);
186 memcpy(pkt
->data
+ pal_size
, buf
, DXA_EXTRA_SIZE
);
187 ret
= get_buffer(s
->pb
, pkt
->data
+ DXA_EXTRA_SIZE
+ pal_size
, size
);
192 if(pal_size
) memcpy(pkt
->data
, pal
, pal_size
);
193 pkt
->stream_index
= 0;
195 c
->vidpos
= url_ftell(s
->pb
);
199 av_log(s
, AV_LOG_ERROR
, "Unknown tag %c%c%c%c\n", buf
[0], buf
[1], buf
[2], buf
[3]);
206 AVInputFormat dxa_demuxer
= {
208 NULL_IF_CONFIG_SMALL("DXA"),