Make bitbuffer even less noisy

Some decoders with large .short_limit may add a lot of bits...
This commit is contained in:
Tommy Vestermark
2015-07-10 21:29:01 +02:00
parent 1dcdeba855
commit c0beea4ad3

View File

@@ -34,7 +34,7 @@ void bitbuffer_add_bit(bitbuffer_t *bits, int bit) {
bits->bits_per_row[bits->row_index]++;
}
else {
fprintf(stderr, "ERROR: bitbuffer:: Could not add more columns\n");
// fprintf(stderr, "ERROR: bitbuffer:: Could not add more columns\n"); // Some decoders may add many columns...
}
}