aboutsummaryrefslogtreecommitdiffstats
path: root/codecs/codec_mp3_d.c
diff options
context:
space:
mode:
Diffstat (limited to 'codecs/codec_mp3_d.c')
-rwxr-xr-xcodecs/codec_mp3_d.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/codecs/codec_mp3_d.c b/codecs/codec_mp3_d.c
index d271dfe51..f417453ef 100755
--- a/codecs/codec_mp3_d.c
+++ b/codecs/codec_mp3_d.c
@@ -14,6 +14,7 @@
* the GNU General Public License
*/
+#include <asterisk/lock.h>
#include <asterisk/translate.h>
#include <asterisk/module.h>
#include <asterisk/logger.h>
@@ -40,7 +41,7 @@
#define MAX_FRAME_SIZE 1441
#define MAX_OUTPUT_LEN 2304
-static pthread_mutex_t localuser_lock = PTHREAD_MUTEX_INITIALIZER;
+static pthread_mutex_t localuser_lock = AST_MUTEX_INITIALIZER;
static int localusecnt=0;
static char *tdesc = "MP3/PCM16 (signed linear) Translator (Decoder only)";