decoder/flac: remove pointless check

This commit is contained in:
Max Kellermann
2016-07-08 22:40:31 +02:00
parent 4a7042e847
commit e42eed4d4c

View File

@@ -155,7 +155,6 @@ flac_common_write(struct flac_data *data, const FLAC__Frame * frame,
FLAC__uint64 nbytes) FLAC__uint64 nbytes)
{ {
void *buffer; void *buffer;
unsigned bit_rate;
if (!data->initialized && !flac_got_first_frame(data, &frame->header)) if (!data->initialized && !flac_got_first_frame(data, &frame->header))
return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT; return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
@@ -167,11 +166,8 @@ flac_common_write(struct flac_data *data, const FLAC__Frame * frame,
data->audio_format.format, buf, data->audio_format.format, buf,
0, frame->header.blocksize); 0, frame->header.blocksize);
if (nbytes > 0) unsigned bit_rate = nbytes * 8 * frame->header.sample_rate /
bit_rate = nbytes * 8 * frame->header.sample_rate / (1000 * frame->header.blocksize);
(1000 * frame->header.blocksize);
else
bit_rate = 0;
auto cmd = decoder_data(data->decoder, data->input_stream, auto cmd = decoder_data(data->decoder, data->input_stream,
buffer, buffer_size, buffer, buffer_size,