fixup debug class definition: rename DFSK and DAUDIO to DDSP

This commit is contained in:
Andreas Eversberg
2016-03-15 19:26:13 +01:00
parent 57caa536cf
commit a5db02775e
7 changed files with 55 additions and 57 deletions

View File

@@ -31,7 +31,7 @@ int jitter_create(jitter_t *jitter, int length)
memset(jitter, 0, sizeof(jitter));
jitter->spl = calloc(length * sizeof(int16_t), 1);
if (!jitter->spl) {
PDEBUG(DAUDIO, DEBUG_ERROR, "No memory for jitter buffer.\n");
PDEBUG(DDSP, DEBUG_ERROR, "No memory for jitter buffer.\n");
return -ENOMEM;
}
jitter->len = length;