search for: flac__format_blocksize_is_subset

Displaying 6 results from an estimated 6 matches for "flac__format_blocksize_is_subset".

2014 Jan 06
2
Exact FLAC subset constraints
...g/flac/format.html#subset page. What statement (first or second) is right? 0001-1110 mean 0110 and 0111 too??? (0110 mean "get 8 bit (blocksize-1) from end of header", 0111 mean "get 16 bit (blocksize-1) from end of header") Why you don't use STRICT block size checking in FLAC__format_blocksize_is_subset() like this: FLAC_API FLAC__bool FLAC__format_blocksize_is_subset(unsigned blocksize, unsigned sample_rate) { if(blocksize == 192 || blocksize == 576 || blocksize == 1152 || blocksize == 2304 || blocksize == 4608 || blocksize == 256 || blocksize == 512 || blocksize == 1024 || blocksize ==...
2014 Jan 07
0
Exact FLAC subset constraints
I think you've found a bug, Bart. flac 1.2.1 did not have any FLAC__format_blocksize_is_subset() function, so the source you're seeing in format.c must be new. If the format documentation you linked to is correct, then either the specifications are self-contradictory, or the code is not implementing the subset checks as described. My interpretation is that blocksize bits of 011...
2014 Jan 09
3
Exact FLAC subset constraints
Any progress? > I agree. Please keep up informed. >> FLAC__format_blocksize_is_subset() was introduced by commit #8ab0138 >> (https://gitorious.org/flac/flac/commit/8ab013837d379d3d1fa84eac5420faec41852fd7) >> over 5 years ago and available in the latest stable release 1.3.0. >> >> It would be nice if the official FLAC documentation used common >> adopt...
2014 Jan 13
0
Exact FLAC subset constraints
...>>>>>> (blocksize-1) from end of header", 0111 mean "get 16 bit (blocksize-1) >>>>>>> from end of header") >>>>>>> >>>>>>> Why you don't use STRICT block size checking in >>>>>>> FLAC__format_blocksize_is_subset() like this: >>>>>>> >>>>>>> FLAC_API FLAC__bool FLAC__format_blocksize_is_subset(unsigned >>>>>>> blocksize, unsigned sample_rate) >>>>>>> { >>>>>>> if(blocksize == 192 || blocksize ==...
2014 Jan 06
0
Exact FLAC subset constraints
...g/flac/format.html#subset page. What statement (first or second) is right? 0001-1110 mean 0110 and 0111 too??? (0110 mean "get 8 bit (blocksize-1) from end of header", 0111 mean "get 16 bit (blocksize-1) from end of header") Why you don't use STRICT block size checking in FLAC__format_blocksize_is_subset() like this: FLAC_API FLAC__bool FLAC__format_blocksize_is_subset(unsigned blocksize, unsigned sample_rate) { if(blocksize == 192 || blocksize == 576 || blocksize == 1152 || blocksize == 2304 || blocksize == 4608 || blocksize == 256 || blocksize == 512 || blocksize == 1024 || blocksize ==...
2013 Jan 22
3
Tag flac as flac 1.2.1_git
On Jan 21, 2013, at 22:57, Erik de Castro Lopo wrote: > IMO, any code change at all, even just whitespace is worthy of its > own version number. If the md5sum of the source code tarball is > different it warrants an updated version number. Why would you release a new version of FLAC if the binary did not change (on a given platform)? I realize that whitespace is an extreme example,