Home | History | Annotate | Download | only in libFLAC

Lines Matching refs:real_length

1446 		unsigned real_length = length;
1458 if(real_length < FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8) { /* underflow check */
1463 real_length -= FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8;
1470 if(!FLAC__bitreader_skip_byte_block_aligned_no_crc(decoder->private_->input, real_length))
1478 if(!FLAC__bitreader_skip_byte_block_aligned_no_crc(decoder->private_->input, real_length))
1483 if(real_length > 0) {
1484 if(0 == (block.data.application.data = malloc(real_length))) {
1488 else if(!FLAC__bitreader_read_byte_block_aligned_no_crc(decoder->private_->input, block.data.application.data, real_length))
1495 if(!read_metadata_vorbiscomment_(decoder, &block.data.vorbis_comment, real_length))
1511 if(real_length > 0) {
1512 if(0 == (block.data.unknown.data = malloc(real_length))) {
1516 else if(!FLAC__bitreader_read_byte_block_aligned_no_crc(decoder->private_->input, block.data.unknown.data, real_length))