ffmpeg / libavformat / bethsoftvid.c @ 6cc7f139
History | View | Annotate | Download (7.66 KB)
1 | 1e6c6759 | Nicholas Tung | /*
|
---|---|---|---|
2 | * Bethsoft VID format Demuxer
|
||
3 | * Copyright (c) 2007 Nicholas Tung
|
||
4 | *
|
||
5 | 2912e87a | Mans Rullgard | * This file is part of Libav.
|
6 | 1e6c6759 | Nicholas Tung | *
|
7 | 2912e87a | Mans Rullgard | * Libav is free software; you can redistribute it and/or
|
8 | 1e6c6759 | Nicholas Tung | * 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 | 2912e87a | Mans Rullgard | * Libav is distributed in the hope that it will be useful,
|
13 | 1e6c6759 | Nicholas Tung | * 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 | 2912e87a | Mans Rullgard | * License along with Libav; if not, write to the Free Software
|
19 | 1e6c6759 | Nicholas Tung | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
20 | */
|
||
21 | |||
22 | /**
|
||
23 | ba87f080 | Diego Biurrun | * @file
|
24 | 1e6c6759 | Nicholas Tung | * @brief Bethesda Softworks VID (.vid) file demuxer
|
25 | * @author Nicholas Tung [ntung (at. ntung com] (2007-03)
|
||
26 | * @sa http://wiki.multimedia.cx/index.php?title=Bethsoft_VID
|
||
27 | * @sa http://www.svatopluk.com/andux/docs/dfvid.html
|
||
28 | */
|
||
29 | |||
30 | 6a5d31ac | Diego Biurrun | #include "libavutil/intreadwrite.h" |
31 | 1e6c6759 | Nicholas Tung | #include "avformat.h" |
32 | 245976da | Diego Biurrun | #include "libavcodec/bethsoftvideo.h" |
33 | 1e6c6759 | Nicholas Tung | |
34 | typedef struct BVID_DemuxContext |
||
35 | { |
||
36 | int nframes;
|
||
37 | /** delay value between frames, added to individual frame delay.
|
||
38 | * custom units, which will be added to other custom units (~=16ms according
|
||
39 | * to free, unofficial documentation) */
|
||
40 | int bethsoft_global_delay;
|
||
41 | |||
42 | /** video presentation time stamp.
|
||
43 | * delay = 16 milliseconds * (global_delay + per_frame_delay) */
|
||
44 | 90523428 | Michael Niedermayer | int video_pts;
|
45 | 1e6c6759 | Nicholas Tung | |
46 | int is_finished;
|
||
47 | |||
48 | } BVID_DemuxContext; |
||
49 | |||
50 | static int vid_probe(AVProbeData *p) |
||
51 | { |
||
52 | // little endian VID tag, file starts with "VID\0"
|
||
53 | 87e87886 | Michael Niedermayer | if (AV_RL32(p->buf) != MKTAG('V', 'I', 'D', 0)) |
54 | 1e6c6759 | Nicholas Tung | return 0; |
55 | |||
56 | return AVPROBE_SCORE_MAX;
|
||
57 | } |
||
58 | |||
59 | static int vid_read_header(AVFormatContext *s, |
||
60 | AVFormatParameters *ap) |
||
61 | { |
||
62 | 8bb57775 | Michael Niedermayer | BVID_DemuxContext *vid = s->priv_data; |
63 | ae628ec1 | Anton Khirnov | AVIOContext *pb = s->pb; |
64 | 1e6c6759 | Nicholas Tung | AVStream *stream; |
65 | |||
66 | /* load main header. Contents:
|
||
67 | * bytes: 'V' 'I' 'D'
|
||
68 | * int16s: always_512, nframes, width, height, delay, always_14
|
||
69 | */
|
||
70 | 45a8a02a | Anton Khirnov | avio_skip(pb, 5);
|
71 | b7effd4e | Anton Khirnov | vid->nframes = avio_rl16(pb); |
72 | 1e6c6759 | Nicholas Tung | |
73 | stream = av_new_stream(s, 0);
|
||
74 | d5c5c8b4 | Michael Niedermayer | if (!stream)
|
75 | 769e10f0 | Panagiotis Issaris | return AVERROR(ENOMEM);
|
76 | 1e6c6759 | Nicholas Tung | av_set_pts_info(stream, 32, 1, 60); // 16 ms increments, i.e. 60 fps |
77 | 72415b2a | Stefano Sabatini | stream->codec->codec_type = AVMEDIA_TYPE_VIDEO; |
78 | 1e6c6759 | Nicholas Tung | stream->codec->codec_id = CODEC_ID_BETHSOFTVID; |
79 | b7effd4e | Anton Khirnov | stream->codec->width = avio_rl16(pb); |
80 | stream->codec->height = avio_rl16(pb); |
||
81 | 1e6c6759 | Nicholas Tung | stream->codec->pix_fmt = PIX_FMT_PAL8; |
82 | b7effd4e | Anton Khirnov | vid->bethsoft_global_delay = avio_rl16(pb); |
83 | avio_rl16(pb); |
||
84 | 1e6c6759 | Nicholas Tung | |
85 | // done with video codec, set up audio codec
|
||
86 | stream = av_new_stream(s, 0);
|
||
87 | d5c5c8b4 | Michael Niedermayer | if (!stream)
|
88 | 769e10f0 | Panagiotis Issaris | return AVERROR(ENOMEM);
|
89 | 72415b2a | Stefano Sabatini | stream->codec->codec_type = AVMEDIA_TYPE_AUDIO; |
90 | 1e6c6759 | Nicholas Tung | stream->codec->codec_id = CODEC_ID_PCM_U8; |
91 | stream->codec->channels = 1;
|
||
92 | stream->codec->sample_rate = 11025;
|
||
93 | dd1c8f3e | Luca Abeni | stream->codec->bits_per_coded_sample = 8;
|
94 | stream->codec->bit_rate = stream->codec->channels * stream->codec->sample_rate * stream->codec->bits_per_coded_sample; |
||
95 | 1e6c6759 | Nicholas Tung | |
96 | return 0; |
||
97 | } |
||
98 | |||
99 | #define BUFFER_PADDING_SIZE 1000 |
||
100 | ae628ec1 | Anton Khirnov | static int read_frame(BVID_DemuxContext *vid, AVIOContext *pb, AVPacket *pkt, |
101 | 1e6c6759 | Nicholas Tung | uint8_t block_type, AVFormatContext *s, int npixels)
|
102 | { |
||
103 | uint8_t * vidbuf_start = NULL;
|
||
104 | int vidbuf_nbytes = 0; |
||
105 | 3e62d187 | Michael Niedermayer | int code;
|
106 | 1e6c6759 | Nicholas Tung | int bytes_copied = 0; |
107 | int position;
|
||
108 | fae3a361 | Måns Rullgård | unsigned int vidbuf_capacity; |
109 | 1e6c6759 | Nicholas Tung | |
110 | vidbuf_start = av_malloc(vidbuf_capacity = BUFFER_PADDING_SIZE); |
||
111 | d5c5c8b4 | Michael Niedermayer | if(!vidbuf_start)
|
112 | 769e10f0 | Panagiotis Issaris | return AVERROR(ENOMEM);
|
113 | 1e6c6759 | Nicholas Tung | |
114 | // save the file position for the packet, include block type
|
||
115 | a2704c97 | Anton Khirnov | position = avio_tell(pb) - 1;
|
116 | 1e6c6759 | Nicholas Tung | |
117 | vidbuf_start[vidbuf_nbytes++] = block_type; |
||
118 | |||
119 | // get the video delay (next int16), and set the presentation time
|
||
120 | b7effd4e | Anton Khirnov | vid->video_pts += vid->bethsoft_global_delay + avio_rl16(pb); |
121 | 1e6c6759 | Nicholas Tung | |
122 | // set the y offset if it exists (decoder header data should be in data section)
|
||
123 | d7cf4489 | Michael Niedermayer | if(block_type == VIDEO_YOFF_P_FRAME){
|
124 | b7effd4e | Anton Khirnov | if(avio_read(pb, &vidbuf_start[vidbuf_nbytes], 2) != 2) |
125 | 373209f8 | Michael Niedermayer | goto fail;
|
126 | 1e6c6759 | Nicholas Tung | vidbuf_nbytes += 2;
|
127 | } |
||
128 | |||
129 | d5c5c8b4 | Michael Niedermayer | do{
|
130 | 1e6c6759 | Nicholas Tung | vidbuf_start = av_fast_realloc(vidbuf_start, &vidbuf_capacity, vidbuf_nbytes + BUFFER_PADDING_SIZE); |
131 | d5c5c8b4 | Michael Niedermayer | if(!vidbuf_start)
|
132 | 769e10f0 | Panagiotis Issaris | return AVERROR(ENOMEM);
|
133 | 1e6c6759 | Nicholas Tung | |
134 | b7effd4e | Anton Khirnov | code = avio_r8(pb); |
135 | 3e62d187 | Michael Niedermayer | vidbuf_start[vidbuf_nbytes++] = code; |
136 | 1e6c6759 | Nicholas Tung | |
137 | 3e62d187 | Michael Niedermayer | if(code >= 0x80){ // rle sequence |
138 | d7cf4489 | Michael Niedermayer | if(block_type == VIDEO_I_FRAME)
|
139 | b7effd4e | Anton Khirnov | vidbuf_start[vidbuf_nbytes++] = avio_r8(pb); |
140 | 3e62d187 | Michael Niedermayer | } else if(code){ // plain sequence |
141 | b7effd4e | Anton Khirnov | if(avio_read(pb, &vidbuf_start[vidbuf_nbytes], code) != code)
|
142 | 373209f8 | Michael Niedermayer | goto fail;
|
143 | 3e62d187 | Michael Niedermayer | vidbuf_nbytes += code; |
144 | 1e6c6759 | Nicholas Tung | } |
145 | 3e62d187 | Michael Niedermayer | bytes_copied += code & 0x7F;
|
146 | d5c5c8b4 | Michael Niedermayer | if(bytes_copied == npixels){ // sometimes no stop character is given, need to keep track of bytes copied |
147 | 1e6c6759 | Nicholas Tung | // may contain a 0 byte even if read all pixels
|
148 | b7effd4e | Anton Khirnov | if(avio_r8(pb))
|
149 | 6b4aa5da | Anton Khirnov | avio_seek(pb, -1, SEEK_CUR);
|
150 | 1e6c6759 | Nicholas Tung | break;
|
151 | } |
||
152 | d5c5c8b4 | Michael Niedermayer | if(bytes_copied > npixels)
|
153 | 373209f8 | Michael Niedermayer | goto fail;
|
154 | 3e62d187 | Michael Niedermayer | } while(code);
|
155 | 1e6c6759 | Nicholas Tung | |
156 | // copy data into packet
|
||
157 | 373209f8 | Michael Niedermayer | if(av_new_packet(pkt, vidbuf_nbytes) < 0) |
158 | goto fail;
|
||
159 | 1e6c6759 | Nicholas Tung | memcpy(pkt->data, vidbuf_start, vidbuf_nbytes); |
160 | av_free(vidbuf_start); |
||
161 | |||
162 | pkt->pos = position; |
||
163 | pkt->stream_index = 0; // use the video decoder, which was initialized as the first stream |
||
164 | pkt->pts = vid->video_pts; |
||
165 | |||
166 | vid->nframes--; // used to check if all the frames were read
|
||
167 | return vidbuf_nbytes;
|
||
168 | 373209f8 | Michael Niedermayer | fail:
|
169 | av_free(vidbuf_start); |
||
170 | return -1; |
||
171 | 1e6c6759 | Nicholas Tung | } |
172 | |||
173 | static int vid_read_packet(AVFormatContext *s, |
||
174 | AVPacket *pkt) |
||
175 | { |
||
176 | 8bb57775 | Michael Niedermayer | BVID_DemuxContext *vid = s->priv_data; |
177 | ae628ec1 | Anton Khirnov | AVIOContext *pb = s->pb; |
178 | 8bb57775 | Michael Niedermayer | unsigned char block_type; |
179 | 1e6c6759 | Nicholas Tung | int audio_length;
|
180 | int ret_value;
|
||
181 | |||
182 | 66e5b1df | Anton Khirnov | if(vid->is_finished || pb->eof_reached)
|
183 | 6f3e0b21 | Panagiotis Issaris | return AVERROR(EIO);
|
184 | 1e6c6759 | Nicholas Tung | |
185 | b7effd4e | Anton Khirnov | block_type = avio_r8(pb); |
186 | d5c5c8b4 | Michael Niedermayer | switch(block_type){
|
187 | 1e6c6759 | Nicholas Tung | case PALETTE_BLOCK:
|
188 | 6b4aa5da | Anton Khirnov | avio_seek(pb, -1, SEEK_CUR); // include block type |
189 | d7cf4489 | Michael Niedermayer | ret_value = av_get_packet(pb, pkt, 3 * 256 + 1); |
190 | if(ret_value != 3 * 256 + 1){ |
||
191 | d5c5c8b4 | Michael Niedermayer | av_free_packet(pkt); |
192 | 6f3e0b21 | Panagiotis Issaris | return AVERROR(EIO);
|
193 | d5c5c8b4 | Michael Niedermayer | } |
194 | 1e6c6759 | Nicholas Tung | pkt->stream_index = 0;
|
195 | return ret_value;
|
||
196 | |||
197 | case FIRST_AUDIO_BLOCK:
|
||
198 | b7effd4e | Anton Khirnov | avio_rl16(pb); |
199 | 1e6c6759 | Nicholas Tung | // soundblaster DAC used for sample rate, as on specification page (link above)
|
200 | b7effd4e | Anton Khirnov | s->streams[1]->codec->sample_rate = 1000000 / (256 - avio_r8(pb)); |
201 | dd1c8f3e | Luca Abeni | s->streams[1]->codec->bit_rate = s->streams[1]->codec->channels * s->streams[1]->codec->sample_rate * s->streams[1]->codec->bits_per_coded_sample; |
202 | 1e6c6759 | Nicholas Tung | case AUDIO_BLOCK:
|
203 | b7effd4e | Anton Khirnov | audio_length = avio_rl16(pb); |
204 | 1e6c6759 | Nicholas Tung | ret_value = av_get_packet(pb, pkt, audio_length); |
205 | pkt->stream_index = 1;
|
||
206 | ccd425e7 | Diego Biurrun | return ret_value != audio_length ? AVERROR(EIO) : ret_value;
|
207 | 1e6c6759 | Nicholas Tung | |
208 | d7cf4489 | Michael Niedermayer | case VIDEO_P_FRAME:
|
209 | case VIDEO_YOFF_P_FRAME:
|
||
210 | case VIDEO_I_FRAME:
|
||
211 | 1e6c6759 | Nicholas Tung | return read_frame(vid, pb, pkt, block_type, s,
|
212 | s->streams[0]->codec->width * s->streams[0]->codec->height); |
||
213 | |||
214 | d7cf4489 | Michael Niedermayer | case EOF_BLOCK:
|
215 | 1e6c6759 | Nicholas Tung | if(vid->nframes != 0) |
216 | av_log(s, AV_LOG_VERBOSE, "reached terminating character but not all frames read.\n");
|
||
217 | vid->is_finished = 1;
|
||
218 | 6f3e0b21 | Panagiotis Issaris | return AVERROR(EIO);
|
219 | 1e6c6759 | Nicholas Tung | default:
|
220 | av_log(s, AV_LOG_ERROR, "unknown block (character = %c, decimal = %d, hex = %x)!!!\n",
|
||
221 | block_type, block_type, block_type); return -1; |
||
222 | } |
||
223 | |||
224 | return 0; |
||
225 | } |
||
226 | |||
227 | c6610a21 | Diego Elio Pettenò | AVInputFormat ff_bethsoftvid_demuxer = { |
228 | 1e6c6759 | Nicholas Tung | "bethsoftvid",
|
229 | bde15e74 | Stefano Sabatini | NULL_IF_CONFIG_SMALL("Bethesda Softworks VID format"),
|
230 | 1e6c6759 | Nicholas Tung | sizeof(BVID_DemuxContext),
|
231 | vid_probe, |
||
232 | vid_read_header, |
||
233 | vid_read_packet, |
||
234 | }; |