Searched refs:OVERREAD_ (Results 1 - 1 of 1) sorted by relevance

/external/flac/libFLAC/
H A Dstream_encoder.c512 * WATCHOUT: some parts of the code assert that OVERREAD_ == 1 and there's
515 static const unsigned OVERREAD_ = 1; variable
995 encoder->private_->verify.input_fifo.size = encoder->protected_->blocksize+OVERREAD_;
1990 const unsigned n = min(blocksize+OVERREAD_-encoder->private_->current_sample_number, samples-j);
2000 /* "i <= blocksize" to overread 1 sample; see comment in OVERREAD_ decl */
2013 FLAC__ASSERT(encoder->private_->current_sample_number == blocksize+OVERREAD_);
2014 FLAC__ASSERT(OVERREAD_ == 1); /* assert we only overread 1 sample which simplifies the rest of the code below */
2053 append_to_verify_fifo_interleaved_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize+OVERREAD_-encoder->private_->current_sample_number, samples-j));
2055 /* "i <= blocksize" to overread 1 sample; see comment in OVERREAD_ decl */
2072 FLAC__ASSERT(i == blocksize+OVERREAD_);
[all...]

Completed in 462 milliseconds