comparison decoders/voc.c @ 32:4a60ee42ca9a

Fixed a byte-ordering issue.
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 19 Sep 2001 16:07:38 +0000
parents f6e679afe88b
children ea58bc3b15d7
comparison
equal deleted inserted replaced
31:530fa59d5db9 32:4a60ee42ca9a
77 int silent; /* sound or silence? */ 77 int silent; /* sound or silence? */
78 Uint32 srate; /* rate code (byte) of silence */ 78 Uint32 srate; /* rate code (byte) of silence */
79 Uint32 blockseek; /* start of current output block */ 79 Uint32 blockseek; /* start of current output block */
80 Uint32 samples; /* number of samples output */ 80 Uint32 samples; /* number of samples output */
81 Uint32 size; /* word length of data */ 81 Uint32 size; /* word length of data */
82 int channels; /* number of sound channels */ 82 Uint8 channels; /* number of sound channels */
83 int extended; /* Has an extended block been read? */ 83 int extended; /* Has an extended block been read? */
84 Uint32 bufpos; /* byte position in internal->buffer. */ 84 Uint32 bufpos; /* byte position in internal->buffer. */
85 } vs_t; 85 } vs_t;
86 86
87 /* Size field */ 87 /* Size field */