2 #include "dpvsimpledecode.h"
4 #define HZREADERROR_OK 0
5 #define HZREADERROR_EOF 1
6 #define HZREADERROR_MALLOCFAILED 2
8 //#define HZREADBLOCKSIZE 16000
9 #define HZREADBLOCKSIZE 1048576
11 typedef struct hz_bitstream_read_s
18 typedef struct hz_bitstream_readblock_s
20 struct hz_bitstream_readblock_s *next;
22 unsigned char data[HZREADBLOCKSIZE];
24 hz_bitstream_readblock_t;
26 typedef struct hz_bitstream_readblocks_s
28 hz_bitstream_readblock_t *blocks;
29 hz_bitstream_readblock_t *current;
30 unsigned int position;
34 hz_bitstream_readblocks_t;
36 static hz_bitstream_read_t *hz_bitstream_read_open(char *filename)
39 hz_bitstream_read_t *stream;
40 if ((file = FS_OpenVirtualFile(filename, false)))
42 stream = (hz_bitstream_read_t *)Z_Malloc(sizeof(hz_bitstream_read_t));
43 memset(stream, 0, sizeof(*stream));
51 static void hz_bitstream_read_close(hz_bitstream_read_t *stream)
55 FS_Close(stream->file);
60 static hz_bitstream_readblocks_t *hz_bitstream_read_blocks_new(void)
62 hz_bitstream_readblocks_t *blocks;
63 blocks = (hz_bitstream_readblocks_t *)Z_Malloc(sizeof(hz_bitstream_readblocks_t));
66 memset(blocks, 0, sizeof(hz_bitstream_readblocks_t));
70 static void hz_bitstream_read_blocks_free(hz_bitstream_readblocks_t *blocks)
72 hz_bitstream_readblock_t *b, *n;
75 for (b = blocks->blocks;b;b = n)
83 static void hz_bitstream_read_flushbits(hz_bitstream_readblocks_t *blocks)
89 static int hz_bitstream_read_blocks_read(hz_bitstream_readblocks_t *blocks, hz_bitstream_read_t *stream, unsigned int size)
92 hz_bitstream_readblock_t *b, *p;
100 b = (hz_bitstream_readblock_t *)Z_Malloc(sizeof(hz_bitstream_readblock_t));
102 return HZREADERROR_MALLOCFAILED;
110 if (s > HZREADBLOCKSIZE)
111 b->size = HZREADBLOCKSIZE;
115 if (FS_Read(stream->file, b->data, b->size) != (fs_offset_t)b->size)
117 stream->endoffile = 1;
128 blocks->current = blocks->blocks;
129 blocks->position = 0;
130 hz_bitstream_read_flushbits(blocks);
131 if (stream->endoffile)
132 return HZREADERROR_EOF;
133 return HZREADERROR_OK;
136 static unsigned int hz_bitstream_read_blocks_getbyte(hz_bitstream_readblocks_t *blocks)
138 while (blocks->current != NULL && blocks->position >= blocks->current->size)
140 blocks->position = 0;
141 blocks->current = blocks->current->next;
143 if (blocks->current == NULL)
145 return blocks->current->data[blocks->position++];
148 static int hz_bitstream_read_bit(hz_bitstream_readblocks_t *blocks)
154 blocks->store |= hz_bitstream_read_blocks_getbyte(blocks) & 0xFF;
157 return (blocks->store >> blocks->count) & 1;
160 static unsigned int hz_bitstream_read_bits(hz_bitstream_readblocks_t *blocks, int size)
162 unsigned int num = 0;
163 // we can only handle about 24 bits at a time safely
164 // (there might be up to 7 bits more than we need in the bit store)
168 num |= hz_bitstream_read_bits(blocks, 8) << size;
170 while (blocks->count < size)
174 blocks->store |= hz_bitstream_read_blocks_getbyte(blocks) & 0xFF;
176 blocks->count -= size;
177 num |= (blocks->store >> blocks->count) & ((1 << size) - 1);
181 static unsigned int hz_bitstream_read_byte(hz_bitstream_readblocks_t *blocks)
183 return hz_bitstream_read_blocks_getbyte(blocks);
186 static unsigned int hz_bitstream_read_short(hz_bitstream_readblocks_t *blocks)
188 return (hz_bitstream_read_byte(blocks) << 8)
189 | (hz_bitstream_read_byte(blocks));
192 static unsigned int hz_bitstream_read_int(hz_bitstream_readblocks_t *blocks)
194 return (hz_bitstream_read_byte(blocks) << 24)
195 | (hz_bitstream_read_byte(blocks) << 16)
196 | (hz_bitstream_read_byte(blocks) << 8)
197 | (hz_bitstream_read_byte(blocks));
200 static void hz_bitstream_read_bytes(hz_bitstream_readblocks_t *blocks, void *outdata, unsigned int size)
203 out = (unsigned char *)outdata;
205 *out++ = hz_bitstream_read_byte(blocks);
210 typedef struct dpvsimpledecodestream_s
212 hz_bitstream_read_t *bitstream;
213 hz_bitstream_readblocks_t *framedatablocks;
217 double info_framerate;
218 unsigned int info_frames;
220 unsigned int info_imagewidth;
221 unsigned int info_imageheight;
222 unsigned int info_imagebpp;
223 unsigned int info_imageRloss;
224 unsigned int info_imageRmask;
225 unsigned int info_imageRshift;
226 unsigned int info_imageGloss;
227 unsigned int info_imageGmask;
228 unsigned int info_imageGshift;
229 unsigned int info_imageBloss;
230 unsigned int info_imageBmask;
231 unsigned int info_imageBshift;
232 unsigned int info_imagesize;
234 // current video frame (needed because of delta compression)
236 // current video frame data (needed because of delta compression)
237 unsigned int *videopixels;
239 // channel the sound file is being played on
242 dpvsimpledecodestream_t;
244 static int dpvsimpledecode_setpixelformat(dpvsimpledecodestream_t *s, unsigned int Rmask, unsigned int Gmask, unsigned int Bmask, unsigned int bytesperpixel)
246 int Rshift, Rbits, Gshift, Gbits, Bshift, Bbits;
249 s->error = DPVSIMPLEDECODEERROR_INVALIDRMASK;
254 s->error = DPVSIMPLEDECODEERROR_INVALIDGMASK;
259 s->error = DPVSIMPLEDECODEERROR_INVALIDBMASK;
262 if (Rmask & Gmask || Rmask & Bmask || Gmask & Bmask)
264 s->error = DPVSIMPLEDECODEERROR_COLORMASKSOVERLAP;
267 switch (bytesperpixel)
270 if ((Rmask | Gmask | Bmask) > 65536)
272 s->error = DPVSIMPLEDECODEERROR_COLORMASKSEXCEEDBPP;
279 s->error = DPVSIMPLEDECODEERROR_UNSUPPORTEDBPP;
282 for (Rshift = 0;!(Rmask & 1);Rshift++, Rmask >>= 1);
283 for (Gshift = 0;!(Gmask & 1);Gshift++, Gmask >>= 1);
284 for (Bshift = 0;!(Bmask & 1);Bshift++, Bmask >>= 1);
285 if (((Rmask + 1) & Rmask) != 0)
287 s->error = DPVSIMPLEDECODEERROR_INVALIDRMASK;
290 if (((Gmask + 1) & Gmask) != 0)
292 s->error = DPVSIMPLEDECODEERROR_INVALIDGMASK;
295 if (((Bmask + 1) & Bmask) != 0)
297 s->error = DPVSIMPLEDECODEERROR_INVALIDBMASK;
300 for (Rbits = 0;Rmask & 1;Rbits++, Rmask >>= 1);
301 for (Gbits = 0;Gmask & 1;Gbits++, Gmask >>= 1);
302 for (Bbits = 0;Bmask & 1;Bbits++, Bmask >>= 1);
305 Rshift += (Rbits - 8);
310 Gshift += (Gbits - 8);
315 Bshift += (Bbits - 8);
318 s->info_imagebpp = bytesperpixel;
319 s->info_imageRloss = 16 + (8 - Rbits);
320 s->info_imageGloss = 8 + (8 - Gbits);
321 s->info_imageBloss = 0 + (8 - Bbits);
322 s->info_imageRmask = (1 << Rbits) - 1;
323 s->info_imageGmask = (1 << Gbits) - 1;
324 s->info_imageBmask = (1 << Bbits) - 1;
325 s->info_imageRshift = Rshift;
326 s->info_imageGshift = Gshift;
327 s->info_imageBshift = Bshift;
328 s->info_imagesize = s->info_imagewidth * s->info_imageheight * s->info_imagebpp;
332 // opening and closing streams
335 void *dpvsimpledecode_open(clvideo_t *video, char *filename, const char **errorstring)
337 dpvsimpledecodestream_t *s;
338 char t[8], *wavename;
339 if (errorstring != NULL)
341 s = (dpvsimpledecodestream_t *)Z_Malloc(sizeof(dpvsimpledecodestream_t));
344 s->bitstream = hz_bitstream_read_open(filename);
345 if (s->bitstream != NULL)
347 // check file identification
348 s->framedatablocks = hz_bitstream_read_blocks_new();
349 if (s->framedatablocks != NULL)
351 hz_bitstream_read_blocks_read(s->framedatablocks, s->bitstream, 8);
352 hz_bitstream_read_bytes(s->framedatablocks, t, 8);
353 if (!memcmp(t, "DPVideo", 8))
355 // check version number
356 hz_bitstream_read_blocks_read(s->framedatablocks, s->bitstream, 2);
357 if (hz_bitstream_read_short(s->framedatablocks) == 1)
359 hz_bitstream_read_blocks_read(s->framedatablocks, s->bitstream, 12);
360 s->info_imagewidth = hz_bitstream_read_short(s->framedatablocks);
361 s->info_imageheight = hz_bitstream_read_short(s->framedatablocks);
362 s->info_framerate = (double) hz_bitstream_read_int(s->framedatablocks) * (1.0 / 65536.0);
364 if (s->info_framerate > 0.0)
366 s->videopixels = (unsigned int *)Z_Malloc(s->info_imagewidth * s->info_imageheight * sizeof(*s->videopixels));
367 if (s->videopixels != NULL)
371 namelen = strlen(filename) + 10;
372 wavename = (char *)Z_Malloc(namelen);
377 FS_StripExtension(filename, wavename, namelen);
378 strlcat(wavename, ".wav", namelen);
379 sfx = S_PrecacheSound (wavename, false, false);
381 s->sndchan = S_StartSound (-1, 0, sfx, vec3_origin, 1.0f, 0);
387 // set the module functions
388 s->videoframenum = -10000;
389 video->close = dpvsimpledecode_close;
390 video->getwidth = dpvsimpledecode_getwidth;
391 video->getheight = dpvsimpledecode_getheight;
392 video->getframerate = dpvsimpledecode_getframerate;
393 video->decodeframe = dpvsimpledecode_video;
397 else if (errorstring != NULL)
398 *errorstring = "unable to allocate video image buffer";
400 else if (errorstring != NULL)
401 *errorstring = "error in video info chunk";
403 else if (errorstring != NULL)
404 *errorstring = "read error";
406 else if (errorstring != NULL)
407 *errorstring = "not a dpvideo file";
408 hz_bitstream_read_blocks_free(s->framedatablocks);
410 else if (errorstring != NULL)
411 *errorstring = "unable to allocate memory for reading buffer";
412 hz_bitstream_read_close(s->bitstream);
414 else if (errorstring != NULL)
415 *errorstring = "unable to open file";
418 else if (errorstring != NULL)
419 *errorstring = "unable to allocate memory for stream info structure";
424 void dpvsimpledecode_close(void *stream)
426 dpvsimpledecodestream_t *s = (dpvsimpledecodestream_t *)stream;
430 Z_Free(s->videopixels);
431 if (s->sndchan != -1)
432 S_StopChannel (s->sndchan, true, true);
433 if (s->framedatablocks)
434 hz_bitstream_read_blocks_free(s->framedatablocks);
436 hz_bitstream_read_close(s->bitstream);
440 // utilitarian functions
442 // returns the current error number for the stream, and resets the error
443 // number to DPVSIMPLEDECODEERROR_NONE
444 // if the supplied string pointer variable is not NULL, it will be set to the
446 int dpvsimpledecode_error(void *stream, const char **errorstring)
448 dpvsimpledecodestream_t *s = (dpvsimpledecodestream_t *)stream;
456 case DPVSIMPLEDECODEERROR_NONE:
457 *errorstring = "no error";
459 case DPVSIMPLEDECODEERROR_EOF:
460 *errorstring = "end of file reached (this is not an error)";
462 case DPVSIMPLEDECODEERROR_READERROR:
463 *errorstring = "read error (corrupt or incomplete file)";
465 case DPVSIMPLEDECODEERROR_SOUNDBUFFERTOOSMALL:
466 *errorstring = "sound buffer is too small for decoding frame (please allocate it as large as dpvsimpledecode_getneededsoundbufferlength suggests)";
468 case DPVSIMPLEDECODEERROR_INVALIDRMASK:
469 *errorstring = "invalid red bits mask";
471 case DPVSIMPLEDECODEERROR_INVALIDGMASK:
472 *errorstring = "invalid green bits mask";
474 case DPVSIMPLEDECODEERROR_INVALIDBMASK:
475 *errorstring = "invalid blue bits mask";
477 case DPVSIMPLEDECODEERROR_COLORMASKSOVERLAP:
478 *errorstring = "color bit masks overlap";
480 case DPVSIMPLEDECODEERROR_COLORMASKSEXCEEDBPP:
481 *errorstring = "color masks too big for specified bytes per pixel";
483 case DPVSIMPLEDECODEERROR_UNSUPPORTEDBPP:
484 *errorstring = "unsupported bytes per pixel (must be 2 for 16bit, or 4 for 32bit)";
487 *errorstring = "unknown error";
494 // returns the width of the image data
495 unsigned int dpvsimpledecode_getwidth(void *stream)
497 dpvsimpledecodestream_t *s = (dpvsimpledecodestream_t *)stream;
498 return s->info_imagewidth;
501 // returns the height of the image data
502 unsigned int dpvsimpledecode_getheight(void *stream)
504 dpvsimpledecodestream_t *s = (dpvsimpledecodestream_t *)stream;
505 return s->info_imageheight;
508 // returns the framerate of the stream
509 double dpvsimpledecode_getframerate(void *stream)
511 dpvsimpledecodestream_t *s = (dpvsimpledecodestream_t *)stream;
512 return s->info_framerate;
515 static int dpvsimpledecode_convertpixels(dpvsimpledecodestream_t *s, void *imagedata, int imagebytesperrow)
517 unsigned int a, x, y, width, height;
518 unsigned int Rloss, Rmask, Rshift, Gloss, Gmask, Gshift, Bloss, Bmask, Bshift;
521 width = s->info_imagewidth;
522 height = s->info_imageheight;
524 Rloss = s->info_imageRloss;
525 Rmask = s->info_imageRmask;
526 Rshift = s->info_imageRshift;
527 Gloss = s->info_imageGloss;
528 Gmask = s->info_imageGmask;
529 Gshift = s->info_imageGshift;
530 Bloss = s->info_imageBloss;
531 Bmask = s->info_imageBmask;
532 Bshift = s->info_imageBshift;
535 if (s->info_imagebpp == 4)
537 unsigned int *outrow;
538 for (y = 0;y < height;y++)
540 outrow = (unsigned int *)((unsigned char *)imagedata + y * imagebytesperrow);
541 for (x = 0;x < width;x++)
544 outrow[x] = (((a >> Rloss) & Rmask) << Rshift) | (((a >> Gloss) & Gmask) << Gshift) | (((a >> Bloss) & Bmask) << Bshift);
550 unsigned short *outrow;
551 for (y = 0;y < height;y++)
553 outrow = (unsigned short *)((unsigned char *)imagedata + y * imagebytesperrow);
554 if (Rloss == 19 && Gloss == 10 && Bloss == 3 && Rshift == 11 && Gshift == 5 && Bshift == 0)
557 for (x = 0;x < width;x++)
560 outrow[x] = ((a >> 8) & 0xF800) | ((a >> 5) & 0x07E0) | ((a >> 3) & 0x001F);
565 for (x = 0;x < width;x++)
568 outrow[x] = (((a >> Rloss) & Rmask) << Rshift) | (((a >> Gloss) & Gmask) << Gshift) | (((a >> Bloss) & Bmask) << Bshift);
576 static int dpvsimpledecode_decompressimage(dpvsimpledecodestream_t *s)
578 int i, a, b, colors, g, x1, y1, bw, bh, width, height, palettebits;
579 unsigned int palette[256], *outrow, *out;
581 width = s->info_imagewidth;
582 height = s->info_imageheight;
583 for (y1 = 0;y1 < height;y1 += g)
585 outrow = s->videopixels + y1 * width;
587 if (y1 + bh > height)
589 for (x1 = 0;x1 < width;x1 += g)
595 if (hz_bitstream_read_bit(s->framedatablocks))
598 palettebits = hz_bitstream_read_bits(s->framedatablocks, 3);
599 colors = 1 << palettebits;
600 for (i = 0;i < colors;i++)
601 palette[i] = hz_bitstream_read_bits(s->framedatablocks, 24);
604 for (b = 0;b < bh;b++, out += width)
605 for (a = 0;a < bw;a++)
606 out[a] = palette[hz_bitstream_read_bits(s->framedatablocks, palettebits)];
610 for (b = 0;b < bh;b++, out += width)
611 for (a = 0;a < bw;a++)
620 // decodes a video frame to the supplied output pixels
621 int dpvsimpledecode_video(void *stream, void *imagedata, unsigned int Rmask, unsigned int Gmask, unsigned int Bmask, unsigned int bytesperpixel, int imagebytesperrow)
623 dpvsimpledecodestream_t *s = (dpvsimpledecodestream_t *)stream;
624 unsigned int framedatasize;
626 s->error = DPVSIMPLEDECODEERROR_NONE;
627 if (dpvsimpledecode_setpixelformat(s, Rmask, Gmask, Bmask, bytesperpixel))
630 hz_bitstream_read_blocks_read(s->framedatablocks, s->bitstream, 8);
631 hz_bitstream_read_bytes(s->framedatablocks, t, 4);
632 if (memcmp(t, "VID0", 4))
635 return (s->error = DPVSIMPLEDECODEERROR_EOF);
637 return (s->error = DPVSIMPLEDECODEERROR_READERROR);
639 framedatasize = hz_bitstream_read_int(s->framedatablocks);
640 hz_bitstream_read_blocks_read(s->framedatablocks, s->bitstream, framedatasize);
641 if (dpvsimpledecode_decompressimage(s))
644 dpvsimpledecode_convertpixels(s, imagedata, imagebytesperrow);