Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJean-Marc Valin <jean-marc.valin@octasic.com>2010-06-30 22:16:14 +0400
committerJean-Marc Valin <jean-marc.valin@octasic.com>2010-06-30 22:16:14 +0400
commit3e66e912659593119fc82d010a225440f3cf772a (patch)
tree6c81518309b238aff373f825f061f6405ec7ded6 /src
parent2db1b48ecde7d003007c178a338247bf889cb384 (diff)
Structure of the hybrid codec
Diffstat (limited to 'src')
-rw-r--r--src/hybrid_encoder.c80
-rw-r--r--src/hybrid_encoder.h53
2 files changed, 133 insertions, 0 deletions
diff --git a/src/hybrid_encoder.c b/src/hybrid_encoder.c
new file mode 100644
index 00000000..29393e6a
--- /dev/null
+++ b/src/hybrid_encoder.c
@@ -0,0 +1,80 @@
+/* Copyright (c) 2010 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
+/*
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+
+ - Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ - Neither the name of the Xiph.org Foundation nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <stdlib.h>
+#include "hybrid_encoder.h"
+
+
+HybridEncoder *hybrid_encoder_create()
+{
+ HybridEncoder *st;
+
+ st = malloc(sizeof(HybridEncoder));
+
+ /* FIXME: Initialize SILK encoder here */
+ st->silk_enc = NULL;
+
+ /* We should not have to create a CELT mode for each encoder state */
+ st->celt_mode = celt_mode_create(48000, 960, NULL);
+ /* Initialize CELT encoder */
+ st->celt_enc = celt_encoder_create(st->celt_mode, 1, NULL);
+
+ return st;
+}
+
+int hybrid_encode(HybridEncoder *st, short *pcm, int frame_size,
+ unsigned char *data, int bytes_per_packet)
+{
+ int celt_ret;
+ /* FIXME: Call SILK encoder for the low band */
+
+ /* This should be adjusted based on the SILK bandwidth */
+ celt_encoder_ctl(st->celt_enc, CELT_SET_START_BAND(13));
+
+ /* Encode high band with CELT */
+ celt_ret = celt_encode(st->celt_enc, pcm, frame_size, data, bytes_per_packet);
+
+ return celt_ret;
+}
+
+void hybrid_encoder_destroy(HybridEncoder *st)
+{
+ /* FIXME: Destroy SILK encoder state */
+
+ celt_encoder_destroy(st->celt_enc);
+ celt_mode_destroy(st->celt_mode);
+
+ free(st);
+}
diff --git a/src/hybrid_encoder.h b/src/hybrid_encoder.h
new file mode 100644
index 00000000..b8dc6f80
--- /dev/null
+++ b/src/hybrid_encoder.h
@@ -0,0 +1,53 @@
+/* Copyright (c) 2010 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
+/*
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+
+ - Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ - Neither the name of the Xiph.org Foundation nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
+
+#ifndef HYBRID_ENCODER_H
+#define HYBRID_ENCODER_H
+
+#include "celt/libcelt/celt.h"
+
+typedef struct {
+ CELTMode *celt_mode;
+ CELTEncoder *celt_enc;
+ void *silk_enc;
+} HybridEncoder;
+
+
+HybridEncoder *hybrid_encoder_create();
+
+int hybrid_encode(HybridEncoder *st, short *pcm, int frame_size,
+ unsigned char *data, int bytes_per_packet);
+
+void hybrid_encoder_destroy(HybridEncoder *st);
+
+
+#endif /* HYBRID_ENCODER_H */
+