[asterisk-commits] russell: branch russell/jack r94785 - /team/russell/jack/codecs/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Dec 26 10:02:48 CST 2007


Author: russell
Date: Wed Dec 26 10:02:48 2007
New Revision: 94785

URL: http://svn.digium.com/view/asterisk?view=rev&rev=94785
Log:
Add codec_resample.  This codec module currently converts between 8 kHz and
16 kHz slinear using libresample.  It is still untested, but if something
doesn't work, it will be a trivial fix ...

Added:
    team/russell/jack/codecs/codec_resample.c   (with props)
    team/russell/jack/codecs/slin_resample_ex.h   (with props)

Added: team/russell/jack/codecs/codec_resample.c
URL: http://svn.digium.com/view/asterisk/team/russell/jack/codecs/codec_resample.c?view=auto&rev=94785
==============================================================================
--- team/russell/jack/codecs/codec_resample.c (added)
+++ team/russell/jack/codecs/codec_resample.c Wed Dec 26 10:02:48 2007
@@ -1,0 +1,227 @@
+/*
+ * Asterisk -- An open source telephony toolkit.
+ *
+ * Copyright (C) 2007, Digium, Inc.
+ *
+ * Russell Bryant <russell at digium.com>
+ *
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2. See the LICENSE file
+ * at the top of the source tree.
+ */
+
+/*! 
+ * \file
+ *
+ * \brief Resample slinear audio
+ *
+ * \ingroup codecs
+ */
+
+#include "asterisk.h"
+
+ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
+
+#ifdef __Darwin__
+#include <float.h>
+#endif
+
+#include <limits.h>
+
+#include "asterisk/module.h"
+#include "asterisk/translate.h"
+#include "asterisk/libresample.h"
+
+#include "slin_resample_ex.h"
+
+#define RESAMPLER_QUALITY 0
+
+#define OUTBUF_SIZE   8096
+
+struct slin16_to_slin8_pvt {
+	void *resampler;
+	double resample_factor;
+};
+
+struct slin8_to_slin16_pvt {
+	void *resampler;
+	double resample_factor;
+};
+
+static int slin16_to_slin8_new(struct ast_trans_pvt *pvt)
+{
+	struct slin16_to_slin8_pvt *resamp_pvt = pvt->pvt;
+
+	resamp_pvt->resample_factor = 0.5;
+
+	if (!(resamp_pvt->resampler = resample_open(RESAMPLER_QUALITY, 0.5, 0.5)))
+		return -1;
+
+	return 0;
+}
+
+static int slin8_to_slin16_new(struct ast_trans_pvt *pvt)
+{
+	struct slin8_to_slin16_pvt *resamp_pvt = pvt->pvt;
+
+	resamp_pvt->resample_factor = 2.0;
+
+	if (!(resamp_pvt->resampler = resample_open(RESAMPLER_QUALITY, 2.0, 2.0)))
+		return -1;
+
+	return 0;
+}
+
+static void slin16_to_slin8_destroy(struct ast_trans_pvt *pvt)
+{
+	struct slin16_to_slin8_pvt *resamp_pvt = pvt->pvt;
+
+	if (resamp_pvt->resampler)
+		resample_close(resamp_pvt->resampler);
+}
+
+static void slin8_to_slin16_destroy(struct ast_trans_pvt *pvt)
+{
+	struct slin8_to_slin16_pvt *resamp_pvt = pvt->pvt;
+
+	if (resamp_pvt->resampler)
+		resample_close(resamp_pvt->resampler);
+}
+
+static int resample_frame(struct ast_trans_pvt *pvt,
+	void *resampler, double resample_factor, struct ast_frame *f)
+{
+	int total_in_buf_used = 0;
+	int total_out_buf_used = 0;
+	int16_t *in_buf = (int16_t *) f->data;
+	int16_t *out_buf = (int16_t *) pvt->outbuf;
+	float in_buf_f[f->samples];
+	float out_buf_f[2048];
+	int res = 0;
+	int i;
+
+	for (i = 0; i < f->samples; i++)
+		in_buf_f[i] = in_buf[i] * (FLT_MAX / SHRT_MAX);
+
+	while (total_in_buf_used < f->samples) {
+		int in_buf_used, out_buf_used;
+
+		out_buf_used = resample_process(resampler, resample_factor,
+			&in_buf_f[total_in_buf_used], f->samples - total_in_buf_used,
+			0, &in_buf_used,
+			&out_buf_f[total_out_buf_used], ARRAY_LEN(out_buf_f) - total_out_buf_used);
+
+		if (out_buf_used < 0)
+			break;
+
+		total_out_buf_used += out_buf_used;
+		total_in_buf_used += in_buf_used;
+
+		if (total_out_buf_used == ARRAY_LEN(out_buf_f)) {
+			ast_log(LOG_ERROR, "Output buffer filled ... need to increase its size\n");
+			res = -1;
+			break;
+		}
+	}
+
+	for (i = 0; i < total_out_buf_used; i++)
+		out_buf[i] = out_buf_f[i] * (SHRT_MAX / FLT_MAX);	
+
+	return res;
+}
+
+static int slin16_to_slin8_framein(struct ast_trans_pvt *pvt, struct ast_frame *f)
+{
+	struct slin16_to_slin8_pvt *resamp_pvt = pvt->pvt;
+
+	return resample_frame(pvt, resamp_pvt->resampler, resamp_pvt->resample_factor, f);
+}
+
+static int slin8_to_slin16_framein(struct ast_trans_pvt *pvt, struct ast_frame *f)
+{
+	struct slin8_to_slin16_pvt *resamp_pvt = pvt->pvt;
+
+	return resample_frame(pvt, resamp_pvt->resampler, resamp_pvt->resample_factor, f);
+}
+
+static struct ast_frame *slin16_to_slin8_sample(void)
+{
+	static struct ast_frame f = {
+		.frametype = AST_FRAME_VOICE,
+		.subclass = AST_FORMAT_SLINEAR16,
+		.datalen = sizeof(slin16_slin8_ex),
+		.samples = sizeof(slin16_slin8_ex) / sizeof(slin16_slin8_ex[0]),
+		.src = __PRETTY_FUNCTION__,
+		.data = slin16_slin8_ex,
+	};
+
+	return &f;
+}
+
+static struct ast_frame *slin8_to_slin16_sample(void)
+{
+	static struct ast_frame f = {
+		.frametype = AST_FRAME_VOICE,
+		.subclass = AST_FORMAT_SLINEAR,
+		.datalen = sizeof(slin8_slin16_ex),
+		.samples = sizeof(slin8_slin16_ex) / sizeof(slin8_slin16_ex[0]),
+		.src = __PRETTY_FUNCTION__,
+		.data = slin8_slin16_ex,
+	};
+
+	return &f;
+}
+
+static struct ast_translator slin16_to_slin8 = {
+	.name = "slin16_to_slin8",
+	.srcfmt = AST_FORMAT_SLINEAR16,
+	.dstfmt = AST_FORMAT_SLINEAR,
+	.newpvt = slin16_to_slin8_new,
+	.destroy = slin16_to_slin8_destroy,
+	.framein = slin16_to_slin8_framein,
+	.sample = slin16_to_slin8_sample,
+	.desc_size = sizeof(struct slin16_to_slin8_pvt),
+	.buffer_samples = (OUTBUF_SIZE / sizeof(int16_t)),
+	.buf_size = OUTBUF_SIZE,
+};
+
+static struct ast_translator slin8_to_slin16 = {
+	.name = "slin8_to_slin16",
+	.srcfmt = AST_FORMAT_SLINEAR,
+	.dstfmt = AST_FORMAT_SLINEAR16,
+	.newpvt = slin8_to_slin16_new,
+	.destroy = slin8_to_slin16_destroy,
+	.framein = slin8_to_slin16_framein,
+	.sample = slin8_to_slin16_sample,
+	.desc_size = sizeof(struct slin8_to_slin16_pvt),
+	.buffer_samples = OUTBUF_SIZE,
+	.buf_size = OUTBUF_SIZE,
+};
+
+static int unload_module(void)
+{
+	int res = 0;
+
+	res |= ast_unregister_translator(&slin16_to_slin8);
+	res |= ast_unregister_translator(&slin8_to_slin16);
+
+	return res;
+}
+
+static int load_module(void)
+{
+	int res = 0;
+
+	res |= ast_register_translator(&slin16_to_slin8);
+	res |= ast_register_translator(&slin8_to_slin16);
+
+	return AST_MODULE_LOAD_SUCCESS;
+}
+
+AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "SLIN Resampling Codec");

Propchange: team/russell/jack/codecs/codec_resample.c
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: team/russell/jack/codecs/codec_resample.c
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: team/russell/jack/codecs/codec_resample.c
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: team/russell/jack/codecs/slin_resample_ex.h
URL: http://svn.digium.com/view/asterisk/team/russell/jack/codecs/slin_resample_ex.h?view=auto&rev=94785
==============================================================================
--- team/russell/jack/codecs/slin_resample_ex.h (added)
+++ team/russell/jack/codecs/slin_resample_ex.h Wed Dec 26 10:02:48 2007
@@ -1,0 +1,43 @@
+/*! \file
+ * \brief slin_resample_ex.h --
+ *
+ * Copyright (C) 2007, Digium Inc.
+ *
+ * Distributed under the terms of the GNU General Public License
+ */
+
+static signed short slin16_slin8_ex[] = {
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000
+};
+
+static signed short slin8_slin16_ex[] = {
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
+	0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000
+};

Propchange: team/russell/jack/codecs/slin_resample_ex.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: team/russell/jack/codecs/slin_resample_ex.h
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: team/russell/jack/codecs/slin_resample_ex.h
------------------------------------------------------------------------------
    svn:mime-type = text/plain




More information about the asterisk-commits mailing list