Revert #1731 for sceAtrac

It's not working correctly.
This commit is contained in:
oioitff 2013-05-10 16:38:06 +08:00
parent 7cc0cdd346
commit 3555d656a4

View file

@ -429,9 +429,6 @@ u32 sceAtracAddStreamData(int atracID, u32 bytesToAdd)
// TODO
if (bytesToAdd > atrac->first.writableBytes)
return ATRAC_ERROR_ADD_DATA_IS_TOO_BIG;
// only add stream data when it need more atrac data
if (atrac->getRemainFrames() > 0)
return 0;
if (atrac->data_buf && (bytesToAdd > 0)) {
int addbytes = std::min(bytesToAdd, atrac->first.filesize - atrac->first.fileoffset);