* the GNU General Public License
*/
+#include <asterisk/lock.h>
#include <asterisk/channel.h>
#include <asterisk/file.h>
#include <asterisk/logger.h>
static struct ast_filestream *glist = NULL;
-static pthread_mutex_t mp3_lock = PTHREAD_MUTEX_INITIALIZER;
+static pthread_mutex_t mp3_lock = AST_MUTEX_INITIALIZER;
static int glistcnt = 0;
static char *name = "mp3";
and be sure it's a valid file. */
struct ast_filestream *tmp;
if ((tmp = malloc(sizeof(struct ast_filestream)))) {
- if (pthread_mutex_lock(&mp3_lock)) {
+ if (ast_pthread_mutex_lock(&mp3_lock)) {
ast_log(LOG_WARNING, "Unable to lock mp3 list\n");
free(tmp);
return NULL;
tmp->last.tv_sec = 0;
tmp->adj = 0;
glistcnt++;
- pthread_mutex_unlock(&mp3_lock);
+ ast_pthread_mutex_unlock(&mp3_lock);
ast_update_use_count();
}
return tmp;
and be sure it's a valid file. */
struct ast_filestream *tmp;
if ((tmp = malloc(sizeof(struct ast_filestream)))) {
- if (pthread_mutex_lock(&mp3_lock)) {
+ if (ast_pthread_mutex_lock(&mp3_lock)) {
ast_log(LOG_WARNING, "Unable to lock mp3 list\n");
free(tmp);
return NULL;
tmp->fd = fd;
tmp->owner = NULL;
glistcnt++;
- pthread_mutex_unlock(&mp3_lock);
+ ast_pthread_mutex_unlock(&mp3_lock);
ast_update_use_count();
} else
ast_log(LOG_WARNING, "Out of memory\n");
static void mp3_close(struct ast_filestream *s)
{
struct ast_filestream *tmp, *tmpl = NULL;
- if (pthread_mutex_lock(&mp3_lock)) {
+ if (ast_pthread_mutex_lock(&mp3_lock)) {
ast_log(LOG_WARNING, "Unable to lock mp3 list\n");
return;
}
ast_sched_del(s->owner->sched, s->owner->streamid);
s->owner->streamid = -1;
}
- pthread_mutex_unlock(&mp3_lock);
+ ast_pthread_mutex_unlock(&mp3_lock);
ast_update_use_count();
if (!tmp)
ast_log(LOG_WARNING, "Freeing a filestream we don't seem to own\n");
gettimeofday(&tv, NULL);
ms = ((tv.tv_usec - s->last.tv_usec) / 1000 + (tv.tv_sec - s->last.tv_sec) * 1000);
/* If we're within 2 milliseconds, that's close enough */
- if ((ms - delay) * (ms - delay) > 4)
+ if ((ms - delay) > 0 )
s->adj -= (ms - delay);
+ s->adj -= 2;
}
- s->fr.timelen = delay;
+ s->fr.samples = delay * 8;
#if 0
ast_log(LOG_DEBUG, "delay is %d, adjusting by %d, as last was %d\n", delay, s->adj, ms);
#endif
{
/* Select our owner for this stream, and get the ball rolling. */
s->owner = c;
+ return 0;
+}
+
+static int mp3_play(struct ast_filestream *s)
+{
ast_read_callback(s);
return 0;
}
return 0;
}
+static int mp3_seek(struct ast_filestream *fs, long sample_offset, int whence)
+{
+ return -1;
+}
+
+static int mp3_trunc(struct ast_filestream *fs)
+{
+ return -1;
+}
+
+static long mp3_tell(struct ast_filestream *fs)
+{
+ return -1;
+}
+
static char *mp3_getcomment(struct ast_filestream *s)
{
return NULL;
mp3_open,
mp3_rewrite,
mp3_apply,
+ mp3_play,
mp3_write,
+ mp3_seek,
+ mp3_trunc,
+ mp3_tell,
mp3_read,
mp3_close,
mp3_getcomment);
int unload_module()
{
struct ast_filestream *tmp, *tmpl;
- if (pthread_mutex_lock(&mp3_lock)) {
+ if (ast_pthread_mutex_lock(&mp3_lock)) {
ast_log(LOG_WARNING, "Unable to lock mp3 list\n");
return -1;
}
tmp = glist;
while(tmp) {
if (tmp->owner)
- ast_softhangup(tmp->owner);
+ ast_softhangup(tmp->owner, AST_SOFTHANGUP_APPUNLOAD);
tmpl = tmp;
tmp = tmp->next;
free(tmpl);
}
- pthread_mutex_unlock(&mp3_lock);
+ ast_pthread_mutex_unlock(&mp3_lock);
return ast_format_unregister(name);
}
int usecount()
{
int res;
- if (pthread_mutex_lock(&mp3_lock)) {
+ if (ast_pthread_mutex_lock(&mp3_lock)) {
ast_log(LOG_WARNING, "Unable to lock mp3 list\n");
return -1;
}
res = glistcnt;
- pthread_mutex_unlock(&mp3_lock);
+ ast_pthread_mutex_unlock(&mp3_lock);
return res;
}