Remove debug prints

This commit is contained in:
Jack Andersen 2016-08-28 14:31:26 -10:00
parent bf992f2d16
commit 127b754691
1 changed files with 0 additions and 2 deletions

View File

@ -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;
} }