Bug 816347 - Remove overly verbose audio stream logging. r=doublec

This commit is contained in:
Matthew Gregan 2012-11-29 14:16:19 +13:00
parent 942601f7c4
commit 383e1a5494
2 changed files with 0 additions and 4 deletions

View File

@ -337,7 +337,6 @@ sa_stream_write(sa_stream_t *s, const void *data, size_t nbytes) {
wrote += r;
} while (wrote < nbytes);
ALOG("%p - Wrote %u", s, nbytes);
s->amountWritten += nbytes;
(*jenv)->PopLocalFrame(jenv, NULL);

View File

@ -262,7 +262,6 @@ sa_stream_write(sa_stream_t *s, const void *data, size_t nbytes) {
wrote += r;
} while (wrote < nbytes);
ALOG("%p - Wrote %u", s, nbytes);
s->amountWritten += nbytes;
return r < 0 ? SA_ERROR_INVALID : SA_SUCCESS;
@ -304,8 +303,6 @@ sa_stream_get_position(sa_stream_t *s, sa_position_t position, int64_t *pos) {
return SA_ERROR_NO_INIT;
}
ALOG("%p - get position", s);
uint32_t framePosition;
if (s->output_unit->getPosition(&framePosition) != NO_ERROR)
return SA_ERROR_INVALID;