mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-14 00:24:05 +00:00
Adds pass-through support for codec CELT.
This patch adds pass-through support for CELT. CELT formats are defined in codecs.conf and can be configured to any sample rate a CELT endpoint supports. This patch also addresses a crash in channel.c resulting from a frame list being freed incorrectly. This crash was discovered while testing a CELT translator which had to split encoded audio into multiple frames. The codec translator is not a part of this patch, but may be contributed in the future. Review: https://reviewboard.asterisk.org/r/1294/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@326855 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -28,6 +28,7 @@
|
||||
|
||||
#include "asterisk/astobj2.h"
|
||||
#include "asterisk/silk.h"
|
||||
#include "asterisk/celt.h"
|
||||
#define AST_FORMAT_ATTR_SIZE 128
|
||||
#define AST_FORMAT_INC 100000
|
||||
|
||||
@@ -99,6 +100,7 @@ enum ast_format_id {
|
||||
/*! Raw 16-bit Signed Linear (192000 Hz) PCM. maybe we're taking this too far. */
|
||||
AST_FORMAT_SLINEAR192 = 27 + AST_FORMAT_TYPE_AUDIO,
|
||||
AST_FORMAT_SPEEX32 = 28 + AST_FORMAT_TYPE_AUDIO,
|
||||
AST_FORMAT_CELT = 29 + AST_FORMAT_TYPE_AUDIO,
|
||||
|
||||
/*! H.261 Video */
|
||||
AST_FORMAT_H261 = 1 + AST_FORMAT_TYPE_VIDEO,
|
||||
|
Reference in New Issue
Block a user