mirror of https://github.com/AxioDL/metaforce.git
Remove debug prints
This commit is contained in:
parent
bf992f2d16
commit
127b754691
|
@ -471,7 +471,6 @@ BitstreamWriter::write(const std::vector<std::vector<Value>>& chanKeys,
|
||||||
/* Generate Bitstream */
|
/* Generate Bitstream */
|
||||||
sizeOut = ComputeBitstreamSize(keyFrameCount, channels);
|
sizeOut = ComputeBitstreamSize(keyFrameCount, channels);
|
||||||
std::unique_ptr<atUint8[]> newData(new atUint8[sizeOut]);
|
std::unique_ptr<atUint8[]> newData(new atUint8[sizeOut]);
|
||||||
printf("TOTAL: %zu\n", sizeOut * 8);
|
|
||||||
|
|
||||||
lastVals = initVals;
|
lastVals = initVals;
|
||||||
for (size_t f=0 ; f<keyFrameCount ; ++f)
|
for (size_t f=0 ; f<keyFrameCount ; ++f)
|
||||||
|
@ -520,7 +519,6 @@ BitstreamWriter::write(const std::vector<std::vector<Value>>& chanKeys,
|
||||||
}
|
}
|
||||||
++kit;
|
++kit;
|
||||||
}
|
}
|
||||||
printf("LASTCUR: %zu\n", m_bitCur);
|
|
||||||
}
|
}
|
||||||
return newData;
|
return newData;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue