Changes between Version 24 and Version 25 of SV8Specification
- Timestamp:
- 11/24/06 19:09:35 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SV8Specification
v24 v25 51 51 || CRC || 32 || || CRC 32 of the block (this field excluded). 0 = invalid || 52 52 || Info length || n*8; 0 < n < 10 || || length (in bytes) from this field (included) to the ReplayGain version field || 53 || Stream version || 8 || 0x08 || bitstream version ||53 || Stream version || 8 || 8 || bitstream version || 54 54 || Sample count || n*8; 0 < n < 10 || || number of samples in the stream. 0 = unknow || 55 || Sample frequency || 4 |||| see table below ||55 || Sample frequency || 3 || 0..7 || see table below || 56 56 || Channel count || 4 || 1..16 || number of channels in the stream || 57 57 || Max used bands || 5 || 1..32 || maximum number of bands used in the file || 58 58 || MS used || 1 || || MidSideStereo || 59 || Audio block frames || 4 || 0..15 || number of frames in an audio block is : 2^Value^ (1..32768) || 60 || Unused || 6 || || must be 0 || 59 || Audio block frames || 3 || 0..7 || number of frames in an audio block is : 4^Value^ (1..16384) || 61 60 || ReplayGain version || 8 || || The replay gain version - must be aligned on a byte - || 62 61 || Title gain || 16 || || The loudness calculated for the title, ''and not the gain that the player must apply'' || … … 73 72 || 2 || 37800 || 74 73 || 3 || 32000 || 75 || 4 || 96000 ||76 74 77 75 The CRC used is this one : [http://www.w3.org/TR/PNG/#D-CRCAppendix http://www.w3.org/TR/PNG/#D-CRCAppendix]. … … 144 142 This block is mandatory and must be the last block of the stream. Tags are written after this block. 145 143 144 == Streaming == 145 146 This file format can be used for streaming. The "SI" block is used as synchronization marker. The decoder will scan for a "SI" block and check the block CRC. Once the decoder is synchronized, it will start decoding. It's up to the streaming server to choose when to send "SI" block.[[BR]] 147 There is currently no way to send tags during playback. This must be changed (a tag block ?). 148 146 149 == Tags == 147 150