Procházet zdrojové kódy

audio: fix bug in channel conversion stream object

wip/image-kernel
Sam Hocevar před 9 měsíci
rodič
revize
0d0dabfe6f
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      include/lol/private/audio/stream.h

+ 1
- 1
include/lol/private/audio/stream.h Zobrazit soubor

@@ -137,7 +137,7 @@ public:
s0->get(tmp.data(), frames);
for (size_t f = 0; f < frames; ++f)
{
buf[f * this->channels()] = tmp[f * s0->channels()];
buf[f * this->channels()] = convert_sample<T0, T>(tmp[f * s0->channels()]);
for (size_t ch = 1; ch < this->channels(); ++ch)
{
size_t ch0 = std::max(size_t(0), s0->channels() - (this->channels() - ch));


Načítá se…
Zrušit
Uložit