Home | History | Annotate | Download | only in libFLAC

Lines Matching refs:real_length

1433 		unsigned real_length = length;
1445 if(real_length < FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8) { /* underflow check */
1450 real_length -= FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8;
1457 if(!FLAC__bitreader_skip_byte_block_aligned_no_crc(decoder->private_->input, real_length))
1465 if(!FLAC__bitreader_skip_byte_block_aligned_no_crc(decoder->private_->input, real_length))
1470 if(real_length > 0) {
1471 if(0 == (block.data.application.data = malloc(real_length))) {
1475 else if(!FLAC__bitreader_read_byte_block_aligned_no_crc(decoder->private_->input, block.data.application.data, real_length))
1482 if(!read_metadata_vorbiscomment_(decoder, &block.data.vorbis_comment, real_length))
1498 if(real_length > 0) {
1499 if(0 == (block.data.unknown.data = malloc(real_length))) {
1503 else if(!FLAC__bitreader_read_byte_block_aligned_no_crc(decoder->private_->input, block.data.unknown.data, real_length))