mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:07:34 +00:00
LibAudio: Fix calculation of wasted bits-per-sample
The value was always zero.
This commit is contained in:
parent
2ecd115176
commit
837803531a
1 changed files with 0 additions and 1 deletions
|
@ -571,7 +571,6 @@ FlacSubframeHeader FlacLoaderPlugin::next_subframe_header(InputBitStream& bit_st
|
||||||
u8 k = 0;
|
u8 k = 0;
|
||||||
if (has_wasted_bits) {
|
if (has_wasted_bits) {
|
||||||
bool current_k_bit = 0;
|
bool current_k_bit = 0;
|
||||||
u8 k = 0;
|
|
||||||
do {
|
do {
|
||||||
current_k_bit = bit_stream.read_bit_big_endian();
|
current_k_bit = bit_stream.read_bit_big_endian();
|
||||||
++k;
|
++k;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue