search for: isfixblock

Displaying 1 result from an estimated 1 matches for "isfixblock".

2016 Jan 31
1
How to get FLAC frame length
....https://xiph.org/flac/format.html I docoded METADATA_BLOCK_STREAMINFO, and get below data: mMinBlock: 4096 mMaxBlock: 4096 mMinFrame: 1201 mMaxFrame: 12804 mSampleRate: 44100 mBitPerSample: 16 mTotalSample: 14170212 Then I start to analyse first Frame, below is the info from first Frame header: isFixBlock = true blockSize = 12 sampleRate = 9 channel = 10 sampleSize = 4 number = 0 Blocking strategy is fixed-blocksize; Block size: 1100, it means 256 * (2^(12-8)) samples = 4096 samples; Sample rate: 1001 : 44.1kHz; Channel: 2; Sample size: 100 : 16 bits per sample; So from above infomation, we'll...