libFLAC: Remove commented out assert

Pointed out by c.helmrich@ecodis.de. It was added during debugging
in commit c06a44969, but was never meant to stay.
This commit is contained in:
Erik de Castro Lopo
2016-12-24 22:05:07 +11:00
parent e64ac79798
commit b799a823b9

View File

@@ -2150,8 +2150,6 @@ FLAC_API FLAC__bool FLAC__stream_encoder_process(FLAC__StreamEncoder *encoder, c
FLAC__ASSERT(0 != encoder->protected_);
FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
// FLAC__ASSERT(samples <= blocksize);
do {
const unsigned n = flac_min(blocksize+OVERREAD_-encoder->private_->current_sample_number, samples-j);