3 #include "dpvsimpledecode.h"
5 #define HZREADERROR_OK 0
6 #define HZREADERROR_EOF 1
7 #define HZREADERROR_MALLOCFAILED 2
9 //#define HZREADBLOCKSIZE 16000
10 #define HZREADBLOCKSIZE 1048576
12 typedef struct hz_bitstream_read_s
19 typedef struct hz_bitstream_readblock_s
21 struct hz_bitstream_readblock_s *next;
23 unsigned char data[HZREADBLOCKSIZE];
25 hz_bitstream_readblock_t;
27 typedef struct hz_bitstream_readblocks_s
29 hz_bitstream_readblock_t *blocks;
30 hz_bitstream_readblock_t *current;
31 unsigned int position;
35 hz_bitstream_readblocks_t;
37 hz_bitstream_read_t *hz_bitstream_read_open(char *filename)
40 hz_bitstream_read_t *stream;
41 if ((file = FS_Open (filename, "rb", false, false)))
43 stream = (hz_bitstream_read_t *)Z_Malloc(sizeof(hz_bitstream_read_t));
44 memset(stream, 0, sizeof(*stream));
52 void hz_bitstream_read_close(hz_bitstream_read_t *stream)
56 FS_Close(stream->file);
61 hz_bitstream_readblocks_t *hz_bitstream_read_blocks_new(void)
63 hz_bitstream_readblocks_t *blocks;
64 blocks = (hz_bitstream_readblocks_t *)Z_Malloc(sizeof(hz_bitstream_readblocks_t));
67 memset(blocks, 0, sizeof(hz_bitstream_readblocks_t));
71 void hz_bitstream_read_blocks_free(hz_bitstream_readblocks_t *blocks)
73 hz_bitstream_readblock_t *b, *n;
76 for (b = blocks->blocks;b;b = n)
84 void hz_bitstream_read_flushbits(hz_bitstream_readblocks_t *blocks)
90 int hz_bitstream_read_blocks_read(hz_bitstream_readblocks_t *blocks, hz_bitstream_read_t *stream, unsigned int size)
93 hz_bitstream_readblock_t *b, *p;
101 b = (hz_bitstream_readblock_t *)Z_Malloc(sizeof(hz_bitstream_readblock_t));
103 return HZREADERROR_MALLOCFAILED;
111 if (s > HZREADBLOCKSIZE)
112 b->size = HZREADBLOCKSIZE;
116 if (FS_Read(stream->file, b->data, b->size) != (fs_offset_t)b->size)
118 stream->endoffile = 1;
129 blocks->current = blocks->blocks;
130 blocks->position = 0;
131 hz_bitstream_read_flushbits(blocks);
132 if (stream->endoffile)
133 return HZREADERROR_EOF;
134 return HZREADERROR_OK;
137 unsigned int hz_bitstream_read_blocks_getbyte(hz_bitstream_readblocks_t *blocks)
139 while (blocks->current != NULL && blocks->position >= blocks->current->size)
141 blocks->position = 0;
142 blocks->current = blocks->current->next;
144 if (blocks->current == NULL)
146 return blocks->current->data[blocks->position++];
149 int hz_bitstream_read_bit(hz_bitstream_readblocks_t *blocks)
155 blocks->store |= hz_bitstream_read_blocks_getbyte(blocks) & 0xFF;
158 return (blocks->store >> blocks->count) & 1;
161 unsigned int hz_bitstream_read_bits(hz_bitstream_readblocks_t *blocks, int size)
163 unsigned int num = 0;
164 // we can only handle about 24 bits at a time safely
165 // (there might be up to 7 bits more than we need in the bit store)
169 num |= hz_bitstream_read_bits(blocks, 8) << size;
171 while (blocks->count < size)
175 blocks->store |= hz_bitstream_read_blocks_getbyte(blocks) & 0xFF;
177 blocks->count -= size;
178 num |= (blocks->store >> blocks->count) & ((1 << size) - 1);
182 unsigned int hz_bitstream_read_byte(hz_bitstream_readblocks_t *blocks)
184 return hz_bitstream_read_blocks_getbyte(blocks);
187 unsigned int hz_bitstream_read_short(hz_bitstream_readblocks_t *blocks)
189 return (hz_bitstream_read_byte(blocks) << 8)
190 | (hz_bitstream_read_byte(blocks));
193 unsigned int hz_bitstream_read_int(hz_bitstream_readblocks_t *blocks)
195 return (hz_bitstream_read_byte(blocks) << 24)
196 | (hz_bitstream_read_byte(blocks) << 16)
197 | (hz_bitstream_read_byte(blocks) << 8)
198 | (hz_bitstream_read_byte(blocks));
201 void hz_bitstream_read_bytes(hz_bitstream_readblocks_t *blocks, void *outdata, unsigned int size)
204 out = (unsigned char *)outdata;
206 *out++ = hz_bitstream_read_byte(blocks);
211 typedef struct dpvsimpledecodestream_s
213 hz_bitstream_read_t *bitstream;
214 hz_bitstream_readblocks_t *framedatablocks;
218 double info_framerate;
219 unsigned int info_frames;
221 unsigned int info_imagewidth;
222 unsigned int info_imageheight;
223 unsigned int info_imagebpp;
224 unsigned int info_imageRloss;
225 unsigned int info_imageRmask;
226 unsigned int info_imageRshift;
227 unsigned int info_imageGloss;
228 unsigned int info_imageGmask;
229 unsigned int info_imageGshift;
230 unsigned int info_imageBloss;
231 unsigned int info_imageBmask;
232 unsigned int info_imageBshift;
233 unsigned int info_imagesize;
235 // current video frame (needed because of delta compression)
237 // current video frame data (needed because of delta compression)
238 unsigned int *videopixels;
240 // channel the sound file is being played on
243 dpvsimpledecodestream_t;
245 static int dpvsimpledecode_setpixelformat(dpvsimpledecodestream_t *s, unsigned int Rmask, unsigned int Gmask, unsigned int Bmask, unsigned int bytesperpixel)
247 int Rshift, Rbits, Gshift, Gbits, Bshift, Bbits;
250 s->error = DPVSIMPLEDECODEERROR_INVALIDRMASK;
255 s->error = DPVSIMPLEDECODEERROR_INVALIDGMASK;
260 s->error = DPVSIMPLEDECODEERROR_INVALIDBMASK;
263 if (Rmask & Gmask || Rmask & Bmask || Gmask & Bmask)
265 s->error = DPVSIMPLEDECODEERROR_COLORMASKSOVERLAP;
268 switch (bytesperpixel)
271 if ((Rmask | Gmask | Bmask) > 65536)
273 s->error = DPVSIMPLEDECODEERROR_COLORMASKSEXCEEDBPP;
280 s->error = DPVSIMPLEDECODEERROR_UNSUPPORTEDBPP;
284 for (Rshift = 0;!(Rmask & 1);Rshift++, Rmask >>= 1);
285 for (Gshift = 0;!(Gmask & 1);Gshift++, Gmask >>= 1);
286 for (Bshift = 0;!(Bmask & 1);Bshift++, Bmask >>= 1);
287 if (((Rmask + 1) & Rmask) != 0)
289 s->error = DPVSIMPLEDECODEERROR_INVALIDRMASK;
292 if (((Gmask + 1) & Gmask) != 0)
294 s->error = DPVSIMPLEDECODEERROR_INVALIDGMASK;
297 if (((Bmask + 1) & Bmask) != 0)
299 s->error = DPVSIMPLEDECODEERROR_INVALIDBMASK;
302 for (Rbits = 0;Rmask & 1;Rbits++, Rmask >>= 1);
303 for (Gbits = 0;Gmask & 1;Gbits++, Gmask >>= 1);
304 for (Bbits = 0;Bmask & 1;Bbits++, Bmask >>= 1);
307 Rshift += (Rbits - 8);
312 Gshift += (Gbits - 8);
317 Bshift += (Bbits - 8);
320 s->info_imagebpp = bytesperpixel;
321 s->info_imageRloss = 16 + (8 - Rbits);
322 s->info_imageGloss = 8 + (8 - Gbits);
323 s->info_imageBloss = 0 + (8 - Bbits);
324 s->info_imageRmask = (1 << Rbits) - 1;
325 s->info_imageGmask = (1 << Gbits) - 1;
326 s->info_imageBmask = (1 << Bbits) - 1;
327 s->info_imageRshift = Rshift;
328 s->info_imageGshift = Gshift;
329 s->info_imageBshift = Bshift;
330 s->info_imagesize = s->info_imagewidth * s->info_imageheight * s->info_imagebpp;
334 // opening and closing streams
336 static void StripExtension(char *in, char *out)
342 if (*c == ':' || *c == '\\' || *c == '/')
355 memcpy(out, in, dot - in);
361 void *dpvsimpledecode_open(char *filename, char **errorstring)
363 dpvsimpledecodestream_t *s;
364 char t[8], *wavename;
365 if (errorstring != NULL)
367 s = (dpvsimpledecodestream_t *)Z_Malloc(sizeof(dpvsimpledecodestream_t));
370 s->bitstream = hz_bitstream_read_open(filename);
371 if (s->bitstream != NULL)
373 // check file identification
374 s->framedatablocks = hz_bitstream_read_blocks_new();
375 if (s->framedatablocks != NULL)
377 hz_bitstream_read_blocks_read(s->framedatablocks, s->bitstream, 8);
378 hz_bitstream_read_bytes(s->framedatablocks, t, 8);
379 if (!memcmp(t, "DPVideo", 8))
381 // check version number
382 hz_bitstream_read_blocks_read(s->framedatablocks, s->bitstream, 2);
383 if (hz_bitstream_read_short(s->framedatablocks) == 1)
385 hz_bitstream_read_blocks_read(s->framedatablocks, s->bitstream, 12);
386 s->info_imagewidth = hz_bitstream_read_short(s->framedatablocks);
387 s->info_imageheight = hz_bitstream_read_short(s->framedatablocks);
388 s->info_framerate = (double) hz_bitstream_read_int(s->framedatablocks) * (1.0 / 65536.0);
390 if (s->info_framerate > 0.0)
392 s->videopixels = (unsigned int *)Z_Malloc(s->info_imagewidth * s->info_imageheight * sizeof(*s->videopixels));
393 if (s->videopixels != NULL)
395 wavename = (char *)Z_Malloc(strlen(filename) + 10);
400 StripExtension(filename, wavename);
401 strcat(wavename, ".wav");
402 sfx = S_PrecacheSound (wavename, false, false);
404 s->sndchan = S_StartSound (-1, 0, sfx, vec3_origin, 1.0f, 0);
410 s->videoframenum = -10000;
413 else if (errorstring != NULL)
414 *errorstring = "unable to allocate video image buffer";
416 else if (errorstring != NULL)
417 *errorstring = "error in video info chunk";
419 else if (errorstring != NULL)
420 *errorstring = "read error";
422 else if (errorstring != NULL)
423 *errorstring = "not a dpvideo file";
424 hz_bitstream_read_blocks_free(s->framedatablocks);
426 else if (errorstring != NULL)
427 *errorstring = "unable to allocate memory for reading buffer";
428 hz_bitstream_read_close(s->bitstream);
430 else if (errorstring != NULL)
431 *errorstring = "unable to open file";
434 else if (errorstring != NULL)
435 *errorstring = "unable to allocate memory for stream info structure";
440 void dpvsimpledecode_close(void *stream)
442 dpvsimpledecodestream_t *s = (dpvsimpledecodestream_t *)stream;
446 Z_Free(s->videopixels);
447 if (s->sndchan != -1)
448 S_StopChannel (s->sndchan);
449 if (s->framedatablocks)
450 hz_bitstream_read_blocks_free(s->framedatablocks);
452 hz_bitstream_read_close(s->bitstream);
456 // utilitarian functions
458 // returns the current error number for the stream, and resets the error
459 // number to DPVSIMPLEDECODEERROR_NONE
460 // if the supplied string pointer variable is not NULL, it will be set to the
462 int dpvsimpledecode_error(void *stream, char **errorstring)
464 dpvsimpledecodestream_t *s = (dpvsimpledecodestream_t *)stream;
472 case DPVSIMPLEDECODEERROR_NONE:
473 *errorstring = "no error";
475 case DPVSIMPLEDECODEERROR_EOF:
476 *errorstring = "end of file reached (this is not an error)";
478 case DPVSIMPLEDECODEERROR_READERROR:
479 *errorstring = "read error (corrupt or incomplete file)";
481 case DPVSIMPLEDECODEERROR_SOUNDBUFFERTOOSMALL:
482 *errorstring = "sound buffer is too small for decoding frame (please allocate it as large as dpvsimpledecode_getneededsoundbufferlength suggests)";
484 case DPVSIMPLEDECODEERROR_INVALIDRMASK:
485 *errorstring = "invalid red bits mask";
487 case DPVSIMPLEDECODEERROR_INVALIDGMASK:
488 *errorstring = "invalid green bits mask";
490 case DPVSIMPLEDECODEERROR_INVALIDBMASK:
491 *errorstring = "invalid blue bits mask";
493 case DPVSIMPLEDECODEERROR_COLORMASKSOVERLAP:
494 *errorstring = "color bit masks overlap";
496 case DPVSIMPLEDECODEERROR_COLORMASKSEXCEEDBPP:
497 *errorstring = "color masks too big for specified bytes per pixel";
499 case DPVSIMPLEDECODEERROR_UNSUPPORTEDBPP:
500 *errorstring = "unsupported bytes per pixel (must be 2 for 16bit, or 4 for 32bit)";
503 *errorstring = "unknown error";
510 // returns the width of the image data
511 unsigned int dpvsimpledecode_getwidth(void *stream)
513 dpvsimpledecodestream_t *s = (dpvsimpledecodestream_t *)stream;
514 return s->info_imagewidth;
517 // returns the height of the image data
518 unsigned int dpvsimpledecode_getheight(void *stream)
520 dpvsimpledecodestream_t *s = (dpvsimpledecodestream_t *)stream;
521 return s->info_imageheight;
524 // returns the framerate of the stream
525 double dpvsimpledecode_getframerate(void *stream)
527 dpvsimpledecodestream_t *s = (dpvsimpledecodestream_t *)stream;
528 return s->info_framerate;
535 static int dpvsimpledecode_convertpixels(dpvsimpledecodestream_t *s, void *imagedata, int imagebytesperrow)
537 unsigned int a, x, y, width, height;
538 unsigned int Rloss, Rmask, Rshift, Gloss, Gmask, Gshift, Bloss, Bmask, Bshift;
541 width = s->info_imagewidth;
542 height = s->info_imageheight;
544 Rloss = s->info_imageRloss;
545 Rmask = s->info_imageRmask;
546 Rshift = s->info_imageRshift;
547 Gloss = s->info_imageGloss;
548 Gmask = s->info_imageGmask;
549 Gshift = s->info_imageGshift;
550 Bloss = s->info_imageBloss;
551 Bmask = s->info_imageBmask;
552 Bshift = s->info_imageBshift;
555 if (s->info_imagebpp == 4)
557 unsigned int *outrow;
558 for (y = 0;y < height;y++)
560 outrow = (unsigned int *)((unsigned char *)imagedata + y * imagebytesperrow);
561 for (x = 0;x < width;x++)
564 outrow[x] = (((a >> Rloss) & Rmask) << Rshift) | (((a >> Gloss) & Gmask) << Gshift) | (((a >> Bloss) & Bmask) << Bshift);
570 unsigned short *outrow;
571 for (y = 0;y < height;y++)
573 outrow = (unsigned short *)((unsigned char *)imagedata + y * imagebytesperrow);
574 if (Rloss == 19 && Gloss == 10 && Bloss == 3 && Rshift == 11 && Gshift == 5 && Bshift == 0)
577 for (x = 0;x < width;x++)
580 outrow[x] = ((a >> 8) & 0xF800) | ((a >> 5) & 0x07E0) | ((a >> 3) & 0x001F);
585 for (x = 0;x < width;x++)
588 outrow[x] = (((a >> Rloss) & Rmask) << Rshift) | (((a >> Gloss) & Gmask) << Gshift) | (((a >> Bloss) & Bmask) << Bshift);
596 static int dpvsimpledecode_decompressimage(dpvsimpledecodestream_t *s)
598 int i, a, b, colors, g, x1, y1, bw, bh, width, height, palettebits;
599 unsigned int palette[256], *outrow, *out;
601 width = s->info_imagewidth;
602 height = s->info_imageheight;
603 for (y1 = 0;y1 < height;y1 += g)
605 outrow = s->videopixels + y1 * width;
607 if (y1 + bh > height)
609 for (x1 = 0;x1 < width;x1 += g)
615 if (hz_bitstream_read_bit(s->framedatablocks))
618 palettebits = hz_bitstream_read_bits(s->framedatablocks, 3);
619 colors = 1 << palettebits;
620 for (i = 0;i < colors;i++)
621 palette[i] = hz_bitstream_read_bits(s->framedatablocks, 24);
624 for (b = 0;b < bh;b++, out += width)
625 for (a = 0;a < bw;a++)
626 out[a] = palette[hz_bitstream_read_bits(s->framedatablocks, palettebits)];
630 for (b = 0;b < bh;b++, out += width)
631 for (a = 0;a < bw;a++)
640 // decodes a video frame to the supplied output pixels
641 int dpvsimpledecode_video(void *stream, void *imagedata, unsigned int Rmask, unsigned int Gmask, unsigned int Bmask, unsigned int bytesperpixel, int imagebytesperrow)
643 dpvsimpledecodestream_t *s = (dpvsimpledecodestream_t *)stream;
644 unsigned int framedatasize;
646 s->error = DPVSIMPLEDECODEERROR_NONE;
647 if (dpvsimpledecode_setpixelformat(s, Rmask, Gmask, Bmask, bytesperpixel))
650 hz_bitstream_read_blocks_read(s->framedatablocks, s->bitstream, 8);
651 hz_bitstream_read_bytes(s->framedatablocks, t, 4);
652 if (memcmp(t, "VID0", 4))
655 return (s->error = DPVSIMPLEDECODEERROR_EOF);
657 return (s->error = DPVSIMPLEDECODEERROR_READERROR);
659 framedatasize = hz_bitstream_read_int(s->framedatablocks);
660 hz_bitstream_read_blocks_read(s->framedatablocks, s->bitstream, framedatasize);
661 if (dpvsimpledecode_decompressimage(s))
664 dpvsimpledecode_convertpixels(s, imagedata, imagebytesperrow);