pthread_mutex_unlock(&sound_lock);
return -1;
}
- res = write(sound, data, len);
+ res = write(sound, data, len);
pthread_mutex_unlock(&sound_lock);
return res;
}
return -1;
}
if (fmt != desired) {
- ast_log(LOG_WARNING, "Requested %d Hz, got %d Hz -- sound may be choppy\n");
+ ast_log(LOG_WARNING, "Requested %d Hz, got %d Hz -- sound may be choppy\n", desired, fmt);
}
#if 1
/* 2 bytes * 15 units of 2^5 = 32 bytes per buffer */
res = 0;
} else
ast_log(LOG_DEBUG, "Unable to handle non-signed linear frame (%d)\n", f->subclass);
- }
+ }
}
ast_frfree(f);
} else
/* If an extension exists, return non-zero */
int ast_exists_extension(struct ast_channel *c, char *context, char *exten, int priority);
+/* If "exten" *could be* a valid extension in this context with or without
+ some more digits, return non-zero. Basically, when this returns 0, no matter
+ what you add to exten, it's not going to be a valid extension anymore */
+int ast_canmatch_extension(struct ast_channel *c, char *context, char *exten, int priority);
+
/* Launch a new extension (i.e. new stack) */
int ast_spawn_extension(struct ast_channel *c, char *context, char *exten, int priority);