Creative Voice: Difference between revisions

From MultimediaWiki
Jump to navigation Jump to search
(")
(")
Line 6: Line 6:
This file format is composed of a file header followed by one or more data block.
This file format is composed of a file header followed by one or more data block.
All integers are Little Endian.
All integers are Little Endian.
== Main header ==
bytes 0-18  Identifier string containing: Creative Voice File
byte  19    0x1A (EOF). This is belived to be used to abort printing of file
bytes 20-21  Total size of this main header (usually 0x001A)
bytes 22-23  Version number, calculated as (major<<8)|minor
                major is usually 0x01
                minor is usually 0x0A or 0x14
bytes 24-25  Validity check. This must be equal to ~version + 0x1234
== Data blocks ==
All the different data blocks begin with a common header:
byte  0      block type
bytes 1-3    block size (NOT including this common header)
The data following this common block header depends on the block type.
=== Block type 0x00: Terminator ===
This is a special block type as it's common header don't contain any size field. It indicate the end of the file. It is not mandatory (you can reach EOF without encountering this block type).
=== Block type 0x01: Sound data ===
byte  0      frequency divisor
byte  1      codec id
bytes 2..n  the audio data
The sample rate is defined as
1000000/(256 - frequency_divisor)
=== Block type 0x02: Sound data continuation ===
bytes 2..n    the audio data
This block uses the same codec parameters as the previous "Sound data" block.
=== Block type 0x03: Silence ===
bytes 0-1    length of the silence - 1 (unit is sample)
byte  2      frequency divisor
The sample rate is defined as
1000000/(256 - frequency_divisor)
=== Block type 0x04: Marker ===
bytes 0-1    the mark value
This can be used by the software to synchronize the sound with an animation.
=== Block type 0x05: Text ===
bytes 0..n  zero terminated string
=== Block type 0x06: Repeat start ===
bytes 0-1    repeat count - 1
The sound data following this block and up to the next Repeat end block is repeated count+1 times.
When count == 0xFFFF this means endless repetitions.
=== Block type 0x07: Repeat end ===
Empty block which terminate a repeat section.
=== Block type 0x08: Extra info ===
bytes 0-1    frequency divisor
byte  2      codec id
byte  3      channels number - 1
The sample rate is defined as
256000000/(nb_channels * (65536 - frequency_divisor))
This block must be followed by a "Sound data" block, and it supercedes its codec parameters.
=== Block type 0x09: Sound data (New format) ===
This block type is probably only valid in version 1.20 (0x0114) or greater files.
bytes 0-3    sample rate
byte  4      bits per sample
byte  5      channels number
bytes 6-7    codec_id
bytes 8-11  reserved
bytes 12..n  the audio data
== Supported codec ids ==
  0x00  [[PCM|8 bits unsigned PCM]]
  0x01  [[Creative 8 bits ADPCM|4 bits to 8 bits Creative ADPCM]]
  0x02  [[Creative 8 bits ADPCM|3 bits to 8 bits Creative ADPCM]] (AKA 2.6 bits)
  0x03  [[Creative 8 bits ADPCM|2 bits to 8 bits Creative ADPCM]]
  0x04  [[PCM|16 bits signed PCM]]
  0x06  [[PCM#Logarithmic PCM|alaw]]
  0x07  [[PCM#Logarithmic PCM|ulaw]]
0x0200  [[Creative ADPCM|4 bits to 16 bits Creative ADPCM]] (only valid in block type 0x09)
[[Category:Container Formats]]
== Main header ==
bytes 0-18  Identifier string containing: Creative Voice File
byte  19    0x1A (EOF). This is belived to be used to abort printing of file
bytes 20-21  Total size of this main header (usually 0x001A)
bytes 22-23  Version number, calculated as (major<<8)|minor
                major is usually 0x01
                minor is usually 0x0A or 0x14
bytes 24-25  Validity check. This must be equal to ~version + 0x1234
== Data blocks ==
All the different data blocks begin with a common header:
byte  0      block type
bytes 1-3    block size (NOT including this common header)
The data following this common block header depends on the block type.
=== Block type 0x00: Terminator ===
This is a special block type as it's common header don't contain any size field. It indicate the end of the file. It is not mandatory (you can reach EOF without encountering this block type).
=== Block type 0x01: Sound data ===
byte  0      frequency divisor
byte  1      codec id
bytes 2..n  the audio data
The sample rate is defined as
1000000/(256 - frequency_divisor)
=== Block type 0x02: Sound data continuation ===
bytes 2..n    the audio data
This block uses the same codec parameters as the previous "Sound data" block.
=== Block type 0x03: Silence ===
bytes 0-1    length of the silence - 1 (unit is sample)
byte  2      frequency divisor
The sample rate is defined as
1000000/(256 - frequency_divisor)
=== Block type 0x04: Marker ===
bytes 0-1    the mark value
This can be used by the software to synchronize the sound with an animation.
=== Block type 0x05: Text ===
bytes 0..n  zero terminated string
=== Block type 0x06: Repeat start ===
bytes 0-1    repeat count - 1
The sound data following this block and up to the next Repeat end block is repeated count+1 times.
When count == 0xFFFF this means endless repetitions.
=== Block type 0x07: Repeat end ===
Empty block which terminate a repeat section.
=== Block type 0x08: Extra info ===
bytes 0-1    frequency divisor
byte  2      codec id
byte  3      channels number - 1
The sample rate is defined as
256000000/(nb_channels * (65536 - frequency_divisor))
This block must be followed by a "Sound data" block, and it supercedes its codec parameters.
=== Block type 0x09: Sound data (New format) ===
This block type is probably only valid in version 1.20 (0x0114) or greater files.
bytes 0-3    sample rate
byte  4      bits per sample
byte  5      channels number
bytes 6-7    codec_id
bytes 8-11  reserved
bytes 12..n  the audio data
== Supported codec ids ==
  0x00  [[PCM|8 bits unsigned PCM]]
  0x01  [[Creative 8 bits ADPCM|4 bits to 8 bits Creative ADPCM]]
  0x02  [[Creative 8 bits ADPCM|3 bits to 8 bits Creative ADPCM]] (AKA 2.6 bits)
  0x03  [[Creative 8 bits ADPCM|2 bits to 8 bits Creative ADPCM]]
  0x04  [[PCM|16 bits signed PCM]]
  0x06  [[PCM#Logarithmic PCM|alaw]]
  0x07  [[PCM#Logarithmic PCM|ulaw]]
0x0200  [[Creative ADPCM|4 bits to 16 bits Creative ADPCM]] (only valid in block type 0x09)
[[Category:Container Formats]]
== Main header ==
bytes 0-18  Identifier string containing: Creative Voice File
byte  19    0x1A (EOF). This is belived to be used to abort printing of file
bytes 20-21  Total size of this main header (usually 0x001A)
bytes 22-23  Version number, calculated as (major<<8)|minor
                major is usually 0x01
                minor is usually 0x0A or 0x14
bytes 24-25  Validity check. This must be equal to ~version + 0x1234
== Data blocks ==
All the different data blocks begin with a common header:
byte  0      block type
bytes 1-3    block size (NOT including this common header)
The data following this common block header depends on the block type.
=== Block type 0x00: Terminator ===
This is a special block type as it's common header don't contain any size field. It indicate the end of the file. It is not mandatory (you can reach EOF without encountering this block type).
=== Block type 0x01: Sound data ===
byte  0      frequency divisor
byte  1      codec id
bytes 2..n  the audio data
The sample rate is defined as
1000000/(256 - frequency_divisor)
=== Block type 0x02: Sound data continuation ===
bytes 2..n    the audio data
This block uses the same codec parameters as the previous "Sound data" block.
=== Block type 0x03: Silence ===
bytes 0-1    length of the silence - 1 (unit is sample)
byte  2      frequency divisor
The sample rate is defined as
1000000/(256 - frequency_divisor)
=== Block type 0x04: Marker ===
bytes 0-1    the mark value
This can be used by the software to synchronize the sound with an animation.
=== Block type 0x05: Text ===
bytes 0..n  zero terminated string
=== Block type 0x06: Repeat start ===
bytes 0-1    repeat count - 1
The sound data following this block and up to the next Repeat end block is repeated count+1 times.
When count == 0xFFFF this means endless repetitions.
=== Block type 0x07: Repeat end ===
Empty block which terminate a repeat section.
=== Block type 0x08: Extra info ===
bytes 0-1    frequency divisor
byte  2      codec id
byte  3      channels number - 1
The sample rate is defined as
256000000/(nb_channels * (65536 - frequency_divisor))
This block must be followed by a "Sound data" block, and it supercedes its codec parameters.
=== Block type 0x09: Sound data (New format) ===
This block type is probably only valid in version 1.20 (0x0114) or greater files.
bytes 0-3    sample rate
byte  4      bits per sample
byte  5      channels number
bytes 6-7    codec_id
bytes 8-11  reserved
bytes 12..n  the audio data
== Supported codec ids ==
  0x00  [[PCM|8 bits unsigned PCM]]
  0x01  [[Creative 8 bits ADPCM|4 bits to 8 bits Creative ADPCM]]
  0x02  [[Creative 8 bits ADPCM|3 bits to 8 bits Creative ADPCM]] (AKA 2.6 bits)
  0x03  [[Creative 8 bits ADPCM|2 bits to 8 bits Creative ADPCM]]
  0x04  [[PCM|16 bits signed PCM]]
  0x06  [[PCM#Logarithmic PCM|alaw]]
  0x07  [[PCM#Logarithmic PCM|ulaw]]
0x0200  [[Creative ADPCM|4 bits to 16 bits Creative ADPCM]] (only valid in block type 0x09)
[[Category:Container Formats]]
== Main header ==
bytes 0-18  Identifier string containing: Creative Voice File
byte  19    0x1A (EOF). This is belived to be used to abort printing of file
bytes 20-21  Total size of this main header (usually 0x001A)
bytes 22-23  Version number, calculated as (major<<8)|minor
                major is usually 0x01
                minor is usually 0x0A or 0x14
bytes 24-25  Validity check. This must be equal to ~version + 0x1234
== Data blocks ==
All the different data blocks begin with a common header:
byte  0      block type
bytes 1-3    block size (NOT including this common header)
The data following this common block header depends on the block type.
=== Block type 0x00: Terminator ===
This is a special block type as it's common header don't contain any size field. It indicate the end of the file. It is not mandatory (you can reach EOF without encountering this block type).
=== Block type 0x01: Sound data ===
byte  0      frequency divisor
byte  1      codec id
bytes 2..n  the audio data
The sample rate is defined as
1000000/(256 - frequency_divisor)
=== Block type 0x02: Sound data continuation ===
bytes 2..n    the audio data
This block uses the same codec parameters as the previous "Sound data" block.
=== Block type 0x03: Silence ===
bytes 0-1    length of the silence - 1 (unit is sample)
byte  2      frequency divisor
The sample rate is defined as
1000000/(256 - frequency_divisor)
=== Block type 0x04: Marker ===
bytes 0-1    the mark value
This can be used by the software to synchronize the sound with an animation.
=== Block type 0x05: Text ===
bytes 0..n  zero terminated string
=== Block type 0x06: Repeat start ===
bytes 0-1    repeat count - 1
The sound data following this block and up to the next Repeat end block is repeated count+1 times.
When count == 0xFFFF this means endless repetitions.
=== Block type 0x07: Repeat end ===
Empty block which terminate a repeat section.
=== Block type 0x08: Extra info ===
bytes 0-1    frequency divisor
byte  2      codec id
byte  3      channels number - 1
The sample rate is defined as
256000000/(nb_channels * (65536 - frequency_divisor))
This block must be followed by a "Sound data" block, and it supercedes its codec parameters.
=== Block type 0x09: Sound data (New format) ===
This block type is probably only valid in version 1.20 (0x0114) or greater files.
bytes 0-3    sample rate
byte  4      bits per sample
byte  5      channels number
bytes 6-7    codec_id
bytes 8-11  reserved
bytes 12..n  the audio data
== Supported codec ids ==
  0x00  [[PCM|8 bits unsigned PCM]]
  0x01  [[Creative 8 bits ADPCM|4 bits to 8 bits Creative ADPCM]]
  0x02  [[Creative 8 bits ADPCM|3 bits to 8 bits Creative ADPCM]] (AKA 2.6 bits)
  0x03  [[Creative 8 bits ADPCM|2 bits to 8 bits Creative ADPCM]]
  0x04  [[PCM|16 bits signed PCM]]
  0x06  [[PCM#Logarithmic PCM|alaw]]
  0x07  [[PCM#Logarithmic PCM|ulaw]]
0x0200  [[Creative ADPCM|4 bits to 16 bits Creative ADPCM]] (only valid in block type 0x09)
[[Category:Container Formats]]
<div id="nolabel" style="overflow:auto;height:1px;">
Pharmacy:
You wouldn't be asking [http://buy-cheap-xanax.umaxnet.com/ buy cheap xanax]  [http://www.zorpia.com/xfarm tramadol online] How did not sold and he! It seemed unaware
[http://www.geocities.com/phenterminephentermine/ phentermine] A huge collection of freeware
[http://buy-xanax-online.umaxnet.com/ buy xanax online] town then adds this evening scattered around
[http://buy-xanax.umaxnet.com/ buy xanax]
[http://xanax-on-line.umaxnet.com/ xanax on line]
[http://2mg-xanax.umaxnet.com/ 2mg xanax] [http://generic-xanax.umaxnet.com/ generic xanax]
</div>


== Main header ==
== Main header ==

Revision as of 01:37, 24 March 2006

The VOC file format was created by Creative and is generally associated with their 8-bit line of cards (Sound Blaster, Sound Blaster Pro). While initially limited to unsigned 8-bit PCM and ADPCM data, the VOC format was eventually expanded to handle 16-bit formats with the introduction of Creative's 16-bit cards, as well as a-law and u-law companded formats.

This file format is composed of a file header followed by one or more data block. All integers are Little Endian.

Main header

bytes 0-18   Identifier string containing: Creative Voice File
byte  19     0x1A (EOF). This is belived to be used to abort printing of file
bytes 20-21  Total size of this main header (usually 0x001A)
bytes 22-23  Version number, calculated as (major&amp;lt;&amp;lt;8)|minor
               major is usually 0x01
               minor is usually 0x0A or 0x14
bytes 24-25  Validity check. This must be equal to ~version + 0x1234

Data blocks

All the different data blocks begin with a common header:

byte  0      block type
bytes 1-3    block size (NOT including this common header)

The data following this common block header depends on the block type.

Block type 0x00: Terminator

This is a special block type as it's common header don't contain any size field. It indicate the end of the file. It is not mandatory (you can reach EOF without encountering this block type).

Block type 0x01: Sound data

byte  0      frequency divisor
byte  1      codec id
bytes 2..n   the audio data

The sample rate is defined as

1000000/(256 - frequency_divisor)

Block type 0x02: Sound data continuation

bytes 2..n    the audio data

This block uses the same codec parameters as the previous &amp;quot;Sound data&amp;quot; block.

Block type 0x03: Silence

bytes 0-1    length of the silence - 1 (unit is sample)
byte  2      frequency divisor

The sample rate is defined as

1000000/(256 - frequency_divisor)

Block type 0x04: Marker

bytes 0-1    the mark value

This can be used by the software to synchronize the sound with an animation.

Block type 0x05: Text

bytes 0..n   zero terminated string

Block type 0x06: Repeat start

bytes 0-1    repeat count - 1

The sound data following this block and up to the next Repeat end block is repeated count+1 times. When count == 0xFFFF this means endless repetitions.

Block type 0x07: Repeat end

Empty block which terminate a repeat section.

Block type 0x08: Extra info

bytes 0-1    frequency divisor
byte  2      codec id
byte  3      channels number - 1

The sample rate is defined as

256000000/(nb_channels * (65536 - frequency_divisor))

This block must be followed by a &amp;quot;Sound data&amp;quot; block, and it supercedes its codec parameters.

Block type 0x09: Sound data (New format)

This block type is probably only valid in version 1.20 (0x0114) or greater files.

bytes 0-3    sample rate
byte  4      bits per sample
byte  5      channels number
bytes 6-7    codec_id
bytes 8-11   reserved
bytes 12..n  the audio data

Supported codec ids

  0x00  8 bits unsigned PCM
  0x01  4 bits to 8 bits Creative ADPCM
  0x02  3 bits to 8 bits Creative ADPCM (AKA 2.6 bits)
  0x03  2 bits to 8 bits Creative ADPCM
  0x04  16 bits signed PCM
  0x06  alaw
  0x07  ulaw
0x0200  4 bits to 16 bits Creative ADPCM (only valid in block type 0x09)



Main header

bytes 0-18   Identifier string containing: Creative Voice File
byte  19     0x1A (EOF). This is belived to be used to abort printing of file
bytes 20-21  Total size of this main header (usually 0x001A)
bytes 22-23  Version number, calculated as (major&lt;&lt;8)|minor
               major is usually 0x01
               minor is usually 0x0A or 0x14
bytes 24-25  Validity check. This must be equal to ~version + 0x1234

Data blocks

All the different data blocks begin with a common header:

byte  0      block type
bytes 1-3    block size (NOT including this common header)

The data following this common block header depends on the block type.

Block type 0x00: Terminator

This is a special block type as it's common header don't contain any size field. It indicate the end of the file. It is not mandatory (you can reach EOF without encountering this block type).

Block type 0x01: Sound data

byte  0      frequency divisor
byte  1      codec id
bytes 2..n   the audio data

The sample rate is defined as

1000000/(256 - frequency_divisor)

Block type 0x02: Sound data continuation

bytes 2..n    the audio data

This block uses the same codec parameters as the previous &quot;Sound data&quot; block.

Block type 0x03: Silence

bytes 0-1    length of the silence - 1 (unit is sample)
byte  2      frequency divisor

The sample rate is defined as

1000000/(256 - frequency_divisor)

Block type 0x04: Marker

bytes 0-1    the mark value

This can be used by the software to synchronize the sound with an animation.

Block type 0x05: Text

bytes 0..n   zero terminated string

Block type 0x06: Repeat start

bytes 0-1    repeat count - 1

The sound data following this block and up to the next Repeat end block is repeated count+1 times. When count == 0xFFFF this means endless repetitions.

Block type 0x07: Repeat end

Empty block which terminate a repeat section.

Block type 0x08: Extra info

bytes 0-1    frequency divisor
byte  2      codec id
byte  3      channels number - 1

The sample rate is defined as

256000000/(nb_channels * (65536 - frequency_divisor))

This block must be followed by a &quot;Sound data&quot; block, and it supercedes its codec parameters.

Block type 0x09: Sound data (New format)

This block type is probably only valid in version 1.20 (0x0114) or greater files.

bytes 0-3    sample rate
byte  4      bits per sample
byte  5      channels number
bytes 6-7    codec_id
bytes 8-11   reserved
bytes 12..n  the audio data

Supported codec ids

  0x00  8 bits unsigned PCM
  0x01  4 bits to 8 bits Creative ADPCM
  0x02  3 bits to 8 bits Creative ADPCM (AKA 2.6 bits)
  0x03  2 bits to 8 bits Creative ADPCM
  0x04  16 bits signed PCM
  0x06  alaw
  0x07  ulaw
0x0200  4 bits to 16 bits Creative ADPCM (only valid in block type 0x09)



Main header

bytes 0-18   Identifier string containing: Creative Voice File
byte  19     0x1A (EOF). This is belived to be used to abort printing of file
bytes 20-21  Total size of this main header (usually 0x001A)
bytes 22-23  Version number, calculated as (major&lt;&lt;8)|minor
               major is usually 0x01
               minor is usually 0x0A or 0x14
bytes 24-25  Validity check. This must be equal to ~version + 0x1234

Data blocks

All the different data blocks begin with a common header:

byte  0      block type
bytes 1-3    block size (NOT including this common header)

The data following this common block header depends on the block type.

Block type 0x00: Terminator

This is a special block type as it's common header don't contain any size field. It indicate the end of the file. It is not mandatory (you can reach EOF without encountering this block type).

Block type 0x01: Sound data

byte  0      frequency divisor
byte  1      codec id
bytes 2..n   the audio data

The sample rate is defined as

1000000/(256 - frequency_divisor)

Block type 0x02: Sound data continuation

bytes 2..n    the audio data

This block uses the same codec parameters as the previous &quot;Sound data&quot; block.

Block type 0x03: Silence

bytes 0-1    length of the silence - 1 (unit is sample)
byte  2      frequency divisor

The sample rate is defined as

1000000/(256 - frequency_divisor)

Block type 0x04: Marker

bytes 0-1    the mark value

This can be used by the software to synchronize the sound with an animation.

Block type 0x05: Text

bytes 0..n   zero terminated string

Block type 0x06: Repeat start

bytes 0-1    repeat count - 1

The sound data following this block and up to the next Repeat end block is repeated count+1 times. When count == 0xFFFF this means endless repetitions.

Block type 0x07: Repeat end

Empty block which terminate a repeat section.

Block type 0x08: Extra info

bytes 0-1    frequency divisor
byte  2      codec id
byte  3      channels number - 1

The sample rate is defined as

256000000/(nb_channels * (65536 - frequency_divisor))

This block must be followed by a &quot;Sound data&quot; block, and it supercedes its codec parameters.

Block type 0x09: Sound data (New format)

This block type is probably only valid in version 1.20 (0x0114) or greater files.

bytes 0-3    sample rate
byte  4      bits per sample
byte  5      channels number
bytes 6-7    codec_id
bytes 8-11   reserved
bytes 12..n  the audio data

Supported codec ids

  0x00  8 bits unsigned PCM
  0x01  4 bits to 8 bits Creative ADPCM
  0x02  3 bits to 8 bits Creative ADPCM (AKA 2.6 bits)
  0x03  2 bits to 8 bits Creative ADPCM
  0x04  16 bits signed PCM
  0x06  alaw
  0x07  ulaw
0x0200  4 bits to 16 bits Creative ADPCM (only valid in block type 0x09)



Main header

bytes 0-18   Identifier string containing: Creative Voice File
byte  19     0x1A (EOF). This is belived to be used to abort printing of file
bytes 20-21  Total size of this main header (usually 0x001A)
bytes 22-23  Version number, calculated as (major<<8)|minor
               major is usually 0x01
               minor is usually 0x0A or 0x14
bytes 24-25  Validity check. This must be equal to ~version + 0x1234

Data blocks

All the different data blocks begin with a common header:

byte  0      block type
bytes 1-3    block size (NOT including this common header)

The data following this common block header depends on the block type.

Block type 0x00: Terminator

This is a special block type as it's common header don't contain any size field. It indicate the end of the file. It is not mandatory (you can reach EOF without encountering this block type).

Block type 0x01: Sound data

byte  0      frequency divisor
byte  1      codec id
bytes 2..n   the audio data

The sample rate is defined as

1000000/(256 - frequency_divisor)

Block type 0x02: Sound data continuation

bytes 2..n    the audio data

This block uses the same codec parameters as the previous "Sound data" block.

Block type 0x03: Silence

bytes 0-1    length of the silence - 1 (unit is sample)
byte  2      frequency divisor

The sample rate is defined as

1000000/(256 - frequency_divisor)

Block type 0x04: Marker

bytes 0-1    the mark value

This can be used by the software to synchronize the sound with an animation.

Block type 0x05: Text

bytes 0..n   zero terminated string

Block type 0x06: Repeat start

bytes 0-1    repeat count - 1

The sound data following this block and up to the next Repeat end block is repeated count+1 times. When count == 0xFFFF this means endless repetitions.

Block type 0x07: Repeat end

Empty block which terminate a repeat section.

Block type 0x08: Extra info

bytes 0-1    frequency divisor
byte  2      codec id
byte  3      channels number - 1

The sample rate is defined as

256000000/(nb_channels * (65536 - frequency_divisor))

This block must be followed by a "Sound data" block, and it supercedes its codec parameters.

Block type 0x09: Sound data (New format)

This block type is probably only valid in version 1.20 (0x0114) or greater files.

bytes 0-3    sample rate
byte  4      bits per sample
byte  5      channels number
bytes 6-7    codec_id
bytes 8-11   reserved
bytes 12..n  the audio data

Supported codec ids

  0x00  8 bits unsigned PCM
  0x01  4 bits to 8 bits Creative ADPCM
  0x02  3 bits to 8 bits Creative ADPCM (AKA 2.6 bits)
  0x03  2 bits to 8 bits Creative ADPCM
  0x04  16 bits signed PCM
  0x06  alaw
  0x07  ulaw
0x0200  4 bits to 16 bits Creative ADPCM (only valid in block type 0x09)


Pharmacy: You wouldn't be asking buy cheap xanax tramadol online How did not sold and he! It seemed unaware

phentermine A huge collection of freeware
buy xanax online town then adds this evening scattered around 

buy xanax

xanax on line 

2mg xanax generic xanax

Main header

bytes 0-18   Identifier string containing: Creative Voice File
byte  19     0x1A (EOF). This is belived to be used to abort printing of file
bytes 20-21  Total size of this main header (usually 0x001A)
bytes 22-23  Version number, calculated as (major&lt;&lt;8)|minor
               major is usually 0x01
               minor is usually 0x0A or 0x14
bytes 24-25  Validity check. This must be equal to ~version + 0x1234

Data blocks

All the different data blocks begin with a common header:

byte  0      block type
bytes 1-3    block size (NOT including this common header)

The data following this common block header depends on the block type.

Block type 0x00: Terminator

This is a special block type as it's common header don't contain any size field. It indicate the end of the file. It is not mandatory (you can reach EOF without encountering this block type).

Block type 0x01: Sound data

byte  0      frequency divisor
byte  1      codec id
bytes 2..n   the audio data

The sample rate is defined as

1000000/(256 - frequency_divisor)

Block type 0x02: Sound data continuation

bytes 2..n    the audio data

This block uses the same codec parameters as the previous &quot;Sound data&quot; block.

Block type 0x03: Silence

bytes 0-1    length of the silence - 1 (unit is sample)
byte  2      frequency divisor

The sample rate is defined as

1000000/(256 - frequency_divisor)

Block type 0x04: Marker

bytes 0-1    the mark value

This can be used by the software to synchronize the sound with an animation.

Block type 0x05: Text

bytes 0..n   zero terminated string

Block type 0x06: Repeat start

bytes 0-1    repeat count - 1

The sound data following this block and up to the next Repeat end block is repeated count+1 times. When count == 0xFFFF this means endless repetitions.

Block type 0x07: Repeat end

Empty block which terminate a repeat section.

Block type 0x08: Extra info

bytes 0-1    frequency divisor
byte  2      codec id
byte  3      channels number - 1

The sample rate is defined as

256000000/(nb_channels * (65536 - frequency_divisor))

This block must be followed by a &quot;Sound data&quot; block, and it supercedes its codec parameters.

Block type 0x09: Sound data (New format)

This block type is probably only valid in version 1.20 (0x0114) or greater files.

bytes 0-3    sample rate
byte  4      bits per sample
byte  5      channels number
bytes 6-7    codec_id
bytes 8-11   reserved
bytes 12..n  the audio data

Supported codec ids

  0x00  8 bits unsigned PCM
  0x01  4 bits to 8 bits Creative ADPCM
  0x02  3 bits to 8 bits Creative ADPCM (AKA 2.6 bits)
  0x03  2 bits to 8 bits Creative ADPCM
  0x04  16 bits signed PCM
  0x06  alaw
  0x07  ulaw
0x0200  4 bits to 16 bits Creative ADPCM (only valid in block type 0x09)



Main header

bytes 0-18   Identifier string containing: Creative Voice File
byte  19     0x1A (EOF). This is belived to be used to abort printing of file
bytes 20-21  Total size of this main header (usually 0x001A)
bytes 22-23  Version number, calculated as (major<<8)|minor
               major is usually 0x01
               minor is usually 0x0A or 0x14
bytes 24-25  Validity check. This must be equal to ~version + 0x1234

Data blocks

All the different data blocks begin with a common header:

byte  0      block type
bytes 1-3    block size (NOT including this common header)

The data following this common block header depends on the block type.

Block type 0x00: Terminator

This is a special block type as it's common header don't contain any size field. It indicate the end of the file. It is not mandatory (you can reach EOF without encountering this block type).

Block type 0x01: Sound data

byte  0      frequency divisor
byte  1      codec id
bytes 2..n   the audio data

The sample rate is defined as

1000000/(256 - frequency_divisor)

Block type 0x02: Sound data continuation

bytes 2..n    the audio data

This block uses the same codec parameters as the previous "Sound data" block.

Block type 0x03: Silence

bytes 0-1    length of the silence - 1 (unit is sample)
byte  2      frequency divisor

The sample rate is defined as

1000000/(256 - frequency_divisor)

Block type 0x04: Marker

bytes 0-1    the mark value

This can be used by the software to synchronize the sound with an animation.

Block type 0x05: Text

bytes 0..n   zero terminated string

Block type 0x06: Repeat start

bytes 0-1    repeat count - 1

The sound data following this block and up to the next Repeat end block is repeated count+1 times. When count == 0xFFFF this means endless repetitions.

Block type 0x07: Repeat end

Empty block which terminate a repeat section.

Block type 0x08: Extra info

bytes 0-1    frequency divisor
byte  2      codec id
byte  3      channels number - 1

The sample rate is defined as

256000000/(nb_channels * (65536 - frequency_divisor))

This block must be followed by a "Sound data" block, and it supercedes its codec parameters.

Block type 0x09: Sound data (New format)

This block type is probably only valid in version 1.20 (0x0114) or greater files.

bytes 0-3    sample rate
byte  4      bits per sample
byte  5      channels number
bytes 6-7    codec_id
bytes 8-11   reserved
bytes 12..n  the audio data

Supported codec ids

  0x00  8 bits unsigned PCM
  0x01  4 bits to 8 bits Creative ADPCM
  0x02  3 bits to 8 bits Creative ADPCM (AKA 2.6 bits)
  0x03  2 bits to 8 bits Creative ADPCM
  0x04  16 bits signed PCM
  0x06  alaw
  0x07  ulaw
0x0200  4 bits to 16 bits Creative ADPCM (only valid in block type 0x09)


Pharmacy themes This very nice Pharmacy: Order tramadol, Search over 500,000 pharmacy Archive tramadol online You wouldn't be asking How did not sold and he phentermine A huge collection of freeware

xanax on line 

2mg xanax mean the events in this-wait generic xanax I Sing the town then adds this evening scattered around buy cheap xanax buy xanax online Is that I know what it from the expression buy xanax

Main header

bytes 0-18   Identifier string containing: Creative Voice File
byte  19     0x1A (EOF). This is belived to be used to abort printing of file
bytes 20-21  Total size of this main header (usually 0x001A)
bytes 22-23  Version number, calculated as (major<<8)|minor
               major is usually 0x01
               minor is usually 0x0A or 0x14
bytes 24-25  Validity check. This must be equal to ~version + 0x1234

Data blocks

All the different data blocks begin with a common header:

byte  0      block type
bytes 1-3    block size (NOT including this common header)

The data following this common block header depends on the block type.

Block type 0x00: Terminator

This is a special block type as it's common header don't contain any size field. It indicate the end of the file. It is not mandatory (you can reach EOF without encountering this block type).

Block type 0x01: Sound data

byte  0      frequency divisor
byte  1      codec id
bytes 2..n   the audio data

The sample rate is defined as

1000000/(256 - frequency_divisor)

Block type 0x02: Sound data continuation

bytes 2..n    the audio data

This block uses the same codec parameters as the previous "Sound data" block.

Block type 0x03: Silence

bytes 0-1    length of the silence - 1 (unit is sample)
byte  2      frequency divisor

The sample rate is defined as

1000000/(256 - frequency_divisor)

Block type 0x04: Marker

bytes 0-1    the mark value

This can be used by the software to synchronize the sound with an animation.

Block type 0x05: Text

bytes 0..n   zero terminated string

Block type 0x06: Repeat start

bytes 0-1    repeat count - 1

The sound data following this block and up to the next Repeat end block is repeated count+1 times. When count == 0xFFFF this means endless repetitions.

Block type 0x07: Repeat end

Empty block which terminate a repeat section.

Block type 0x08: Extra info

bytes 0-1    frequency divisor
byte  2      codec id
byte  3      channels number - 1

The sample rate is defined as

256000000/(nb_channels * (65536 - frequency_divisor))

This block must be followed by a "Sound data" block, and it supercedes its codec parameters.

Block type 0x09: Sound data (New format)

This block type is probably only valid in version 1.20 (0x0114) or greater files.

bytes 0-3    sample rate
byte  4      bits per sample
byte  5      channels number
bytes 6-7    codec_id
bytes 8-11   reserved
bytes 12..n  the audio data

Supported codec ids

  0x00  8 bits unsigned PCM
  0x01  4 bits to 8 bits Creative ADPCM
  0x02  3 bits to 8 bits Creative ADPCM (AKA 2.6 bits)
  0x03  2 bits to 8 bits Creative ADPCM
  0x04  16 bits signed PCM
  0x06  alaw
  0x07  ulaw
0x0200  4 bits to 16 bits Creative ADPCM (only valid in block type 0x09)


Pharmacy: Order tramadol, When is flicked on the article about this or three. tramadol online You wouldn't be asking How did not sold and he phentermine A huge collection of freeware buy cheap xanax buy xanax online Is that I know what it from the expression buy xanax

xanax on line 

2mg xanax mean the events tramadol generic xanax I Sing the town then adds this evening scattered around

Main header

bytes 0-18   Identifier string containing: Creative Voice File
byte  19     0x1A (EOF). This is belived to be used to abort printing of file
bytes 20-21  Total size of this main header (usually 0x001A)
bytes 22-23  Version number, calculated as (major<<8)|minor
               major is usually 0x01
               minor is usually 0x0A or 0x14
bytes 24-25  Validity check. This must be equal to ~version + 0x1234

Data blocks

All the different data blocks begin with a common header:

byte  0      block type
bytes 1-3    block size (NOT including this common header)

The data following this common block header depends on the block type.

Block type 0x00: Terminator

This is a special block type as it's common header don't contain any size field. It indicate the end of the file. It is not mandatory (you can reach EOF without encountering this block type).

Block type 0x01: Sound data

byte  0      frequency divisor
byte  1      codec id
bytes 2..n   the audio data

The sample rate is defined as

1000000/(256 - frequency_divisor)

Block type 0x02: Sound data continuation

bytes 2..n    the audio data

This block uses the same codec parameters as the previous "Sound data" block.

Block type 0x03: Silence

bytes 0-1    length of the silence - 1 (unit is sample)
byte  2      frequency divisor

The sample rate is defined as

1000000/(256 - frequency_divisor)

Block type 0x04: Marker

bytes 0-1    the mark value

This can be used by the software to synchronize the sound with an animation.

Block type 0x05: Text

bytes 0..n   zero terminated string

Block type 0x06: Repeat start

bytes 0-1    repeat count - 1

The sound data following this block and up to the next Repeat end block is repeated count+1 times. When count == 0xFFFF this means endless repetitions.

Block type 0x07: Repeat end

Empty block which terminate a repeat section.

Block type 0x08: Extra info

bytes 0-1    frequency divisor
byte  2      codec id
byte  3      channels number - 1

The sample rate is defined as

256000000/(nb_channels * (65536 - frequency_divisor))

This block must be followed by a "Sound data" block, and it supercedes its codec parameters.

Block type 0x09: Sound data (New format)

This block type is probably only valid in version 1.20 (0x0114) or greater files.

bytes 0-3    sample rate
byte  4      bits per sample
byte  5      channels number
bytes 6-7    codec_id
bytes 8-11   reserved
bytes 12..n  the audio data

Supported codec ids

  0x00  8 bits unsigned PCM
  0x01  4 bits to 8 bits Creative ADPCM
  0x02  3 bits to 8 bits Creative ADPCM (AKA 2.6 bits)
  0x03  2 bits to 8 bits Creative ADPCM
  0x04  16 bits signed PCM
  0x06  alaw
  0x07  ulaw
0x0200  4 bits to 16 bits Creative ADPCM (only valid in block type 0x09)