Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
56cb227e
提交
56cb227e
authored
4月 19, 2006
作者:
Anthony Minessale
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add ilbc
git-svn-id:
http://svn.freeswitch.org/svn/freeswitch/trunk@1199
d0543943-73ff-0310-b7d9-9358b9ac24b2
上级
a128d317
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
133 行增加
和
74 行删除
+133
-74
mod_ilbc.c
src/mod/codecs/mod_ilbc/mod_ilbc.c
+103
-58
mod_exosip.c
src/mod/endpoints/mod_exosip/mod_exosip.c
+13
-6
mod_iax.c
src/mod/endpoints/mod_iax/mod_iax.c
+1
-1
switch_buffer.c
src/switch_buffer.c
+8
-4
switch_core.c
src/switch_core.c
+5
-2
switch_ivr.c
src/switch_ivr.c
+3
-3
没有找到文件。
src/mod/codecs/mod_ilbc/mod_ilbc.c
浏览文件 @
56cb227e
...
...
@@ -32,12 +32,16 @@
#include "switch.h"
#include "iLBC_encode.h"
#include "iLBC_decode.h"
#include "iLBC_define.h"
static
const
char
modname
[]
=
"mod_ilbc"
;
struct
ilbc_context
{
iLBC_Enc_Inst_t
encoder
;
iLBC_Dec_Inst_t
decoder
;
uint8_t
ms
;
uint16_t
bytes
;
uint16_t
dbytes
;
};
static
switch_status
switch_ilbc_init
(
switch_codec
*
codec
,
switch_codec_flag
flags
,
...
...
@@ -45,6 +49,13 @@ static switch_status switch_ilbc_init(switch_codec *codec, switch_codec_flag fla
{
struct
ilbc_context
*
context
;
int
encoding
,
decoding
;
uint8_t
ms
=
codec
->
implementation
->
microseconds_per_frame
/
1000
;
if
(
ms
!=
20
&&
ms
!=
30
)
{
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_ERROR
,
"invalid speed! (I should never happen)
\n
"
);
return
SWITCH_STATUS_FALSE
;
}
encoding
=
(
flags
&
SWITCH_CODEC_FLAG_ENCODE
);
decoding
=
(
flags
&
SWITCH_CODEC_FLAG_DECODE
);
...
...
@@ -53,10 +64,21 @@ static switch_status switch_ilbc_init(switch_codec *codec, switch_codec_flag fla
return
SWITCH_STATUS_FALSE
;
}
else
{
context
=
switch_core_alloc
(
codec
->
memory_pool
,
sizeof
(
*
context
));
if
(
encoding
)
initEncode
(
&
context
->
encoder
,
30
);
if
(
decoding
)
initDecode
(
&
context
->
decoder
,
30
,
0
);
context
->
ms
=
ms
;
if
(
context
->
ms
==
20
)
{
context
->
bytes
=
NO_OF_BYTES_20MS
;
context
->
dbytes
=
320
;
}
else
{
context
->
bytes
=
NO_OF_BYTES_30MS
;
context
->
dbytes
=
480
;
}
if
(
encoding
)
{
initEncode
(
&
context
->
encoder
,
context
->
ms
);
}
if
(
decoding
)
{
initDecode
(
&
context
->
decoder
,
context
->
ms
,
1
);
}
}
codec
->
private_info
=
context
;
...
...
@@ -70,35 +92,38 @@ static switch_status switch_ilbc_destroy(switch_codec *codec)
return
SWITCH_STATUS_SUCCESS
;
}
static
switch_status
switch_ilbc_encode
(
switch_codec
*
codec
,
switch_codec
*
other_codec
,
void
*
decoded_data
,
size_t
decoded_data_len
,
int
decoded_rate
,
void
*
encoded_data
,
size_t
*
encoded_data_len
,
int
*
encoded_rate
,
unsigned
int
*
flag
)
static
switch_status
switch_ilbc_encode
(
switch_codec
*
codec
,
switch_codec
*
other_codec
,
void
*
decoded_data
,
uint32_t
decoded_data_len
,
uint32_t
decoded_rate
,
void
*
encoded_data
,
uint32_t
*
encoded_data_len
,
uint32_t
*
encoded_rate
,
unsigned
int
*
flag
)
{
struct
ilbc_context
*
context
=
codec
->
private_info
;
int
cbret
=
0
;
if
(
!
context
)
{
return
SWITCH_STATUS_FALSE
;
}
if
(
decoded_data_len
%
320
==
0
)
{
if
(
decoded_data_len
%
context
->
dbytes
==
0
)
{
unsigned
int
new_len
=
0
;
ilbc_signal
*
ddp
=
decoded_data
;
ilbc_byte
*
edp
=
encoded_data
;
int
x
;
int
loops
=
(
int
)
decoded_data_len
/
320
;
unsigned
char
*
edp
=
encoded_data
;
short
*
ddp
=
decoded_data
;
int
x
,
y
;
int
loops
=
(
int
)
decoded_data_len
/
context
->
dbytes
;
float
buf
[
240
];
for
(
x
=
0
;
x
<
loops
&&
new_len
<
*
encoded_data_len
;
x
++
)
{
iLBC_encode
(
context
->
encoder
,
ddp
,
edp
);
edp
+=
33
;
ddp
+=
160
;
new_len
+=
33
;
for
(
y
=
0
;
y
<
context
->
dbytes
/
sizeof
(
short
)
;
y
++
)
{
buf
[
y
]
=
ddp
[
y
];
}
iLBC_encode
(
edp
,
buf
,
&
context
->
encoder
);
edp
+=
context
->
bytes
;
ddp
+=
context
->
dbytes
;
new_len
+=
context
->
bytes
;
}
if
(
new_len
<=
*
encoded_data_len
)
{
*
encoded_data_len
=
new_len
;
...
...
@@ -110,17 +135,15 @@ static switch_status switch_ilbc_encode(switch_codec *codec,
return
SWITCH_STATUS_SUCCESS
;
}
static
switch_status
switch_ilbc_decode
(
switch_codec
*
codec
,
switch_codec
*
other_codec
,
static
switch_status
switch_ilbc_decode
(
switch_codec
*
codec
,
switch_codec
*
other_codec
,
void
*
encoded_data
,
size_t
encoded_data_len
,
int
encoded_rate
,
uint32_t
encoded_data_len
,
uint32_t
encoded_rate
,
void
*
decoded_data
,
size_t
*
decoded_data_len
,
int
*
decoded_rate
,
unsigned
int
*
flag
)
uint32_t
*
decoded_data_len
,
uint32_t
*
decoded_rate
,
unsigned
int
*
flag
)
{
struct
ilbc_context
*
context
=
codec
->
private_info
;
...
...
@@ -128,18 +151,23 @@ static switch_status switch_ilbc_decode(switch_codec *codec,
return
SWITCH_STATUS_FALSE
;
}
if
(
encoded_data_len
%
33
==
0
)
{
int
loops
=
(
int
)
encoded_data_len
/
33
;
ilbc_byte
*
edp
=
encoded_data
;
ilbc_signal
*
ddp
=
decoded_data
;
int
x
;
if
(
encoded_data_len
%
context
->
bytes
==
0
)
{
int
loops
=
(
int
)
encoded_data_len
/
context
->
bytes
;
unsigned
char
*
edp
=
encoded_data
;
short
*
ddp
=
decoded_data
;
int
x
,
y
;
unsigned
int
new_len
=
0
;
float
buf
[
240
];
for
(
x
=
0
;
x
<
loops
&&
new_len
<
*
decoded_data_len
;
x
++
)
{
iLBC_decode
(
context
->
decoder
,
edp
,
ddp
);
ddp
+=
160
;
edp
+=
33
;
new_len
+=
320
;
iLBC_decode
(
buf
,
edp
,
&
context
->
decoder
,
1
);
for
(
y
=
0
;
y
<
context
->
dbytes
/
sizeof
(
short
)
;
y
++
)
{
ddp
[
y
]
=
buf
[
y
];
}
ddp
+=
context
->
dbytes
/
sizeof
(
short
);
edp
+=
context
->
bytes
;
new_len
+=
context
->
dbytes
;
}
if
(
new_len
<=
*
decoded_data_len
)
{
*
decoded_data_len
=
new_len
;
...
...
@@ -156,29 +184,46 @@ static switch_status switch_ilbc_decode(switch_codec *codec,
/* Registration */
static
const
switch_codec_implementation
ilbc_8k_implementation
=
{
static
const
switch_codec_implementation
ilbc_8k_30ms_implementation
=
{
/*.samples_per_second */
8000
,
/*.bits_per_second */
NO_OF_BYTES_30MS
*
8
*
8000
/
BLOCKL_30MS
,
/*.microseconds_per_frame */
30000
,
/*.samples_per_frame */
240
,
/*.bytes_per_frame */
480
,
/*.encoded_bytes_per_frame */
NO_OF_BYTES_30MS
,
/*.number_of_channels */
1
,
/*.pref_frames_per_packet */
1
,
/*.max_frames_per_packet */
1
,
/*.init */
switch_ilbc_init
,
/*.encode */
switch_ilbc_encode
,
/*.decode */
switch_ilbc_decode
,
/*.destroy */
switch_ilbc_destroy
};
static
const
switch_codec_implementation
ilbc_8k_20ms_implementation
=
{
/*.samples_per_second */
8000
,
/*.bits_per_second */
13200
,
/*.microseconds_per_frame */
20000
,
/*.samples_per_frame */
160
,
/*.bytes_per_frame */
320
,
/*.encoded_bytes_per_frame */
33
,
/*.number_of_channels */
1
,
/*.pref_frames_per_packet */
1
,
/*.max_frames_per_packet */
1
,
/*.init */
switch_ilbc_init
,
/*.encode */
switch_ilbc_encode
,
/*.decode */
switch_ilbc_decode
,
/*.destroy */
switch_ilbc_destroy
,
/*.bits_per_second */
NO_OF_BYTES_20MS
*
8
*
8000
/
BLOCKL_20MS
,
/*.microseconds_per_frame */
20000
,
/*.samples_per_frame */
160
,
/*.bytes_per_frame */
320
,
/*.encoded_bytes_per_frame */
NO_OF_BYTES_20MS
,
/*.number_of_channels */
1
,
/*.pref_frames_per_packet */
1
,
/*.max_frames_per_packet */
1
,
/*.init */
switch_ilbc_init
,
/*.encode */
switch_ilbc_encode
,
/*.decode */
switch_ilbc_decode
,
/*.destroy */
switch_ilbc_destroy
,
/*.next */
&
ilbc_8k_30ms_implementation
};
static
const
switch_codec_interface
ilbc_codec_interface
=
{
/*.interface_name */
"ilbc"
,
/*.codec_type */
SWITCH_CODEC_TYPE_AUDIO
,
/*.ianacode */
3
,
/*.iananame */
"i
lbc
"
,
/*.implementations */
&
ilbc_8k_implementation
,
/*.ianacode */
97
,
/*.iananame */
"i
LBC
"
,
/*.implementations */
&
ilbc_8k_
20ms_
implementation
,
};
...
...
src/mod/endpoints/mod_exosip/mod_exosip.c
浏览文件 @
56cb227e
...
...
@@ -1283,11 +1283,15 @@ static switch_status exosip_create_call(eXosip_event_t * event)
{
int
rate
=
atoi
(
drate
);
int
ms
=
globals
.
codec_ms
;
if
(
!
strcasecmp
(
dname
,
"ilbc"
))
{
ms
=
30
;
}
if
(
switch_core_codec_init
(
&
tech_pvt
->
read_codec
,
dname
,
rate
,
globals
.
codec_
ms
,
ms
,
1
,
SWITCH_CODEC_FLAG_ENCODE
|
SWITCH_CODEC_FLAG_DECODE
,
NULL
,
switch_core_session_get_pool
(
session
))
!=
SWITCH_STATUS_SUCCESS
)
{
...
...
@@ -1298,7 +1302,7 @@ static switch_status exosip_create_call(eXosip_event_t * event)
if
(
switch_core_codec_init
(
&
tech_pvt
->
write_codec
,
dname
,
rate
,
globals
.
codec_
ms
,
ms
,
1
,
SWITCH_CODEC_FLAG_ENCODE
|
SWITCH_CODEC_FLAG_DECODE
,
NULL
,
switch_core_session_get_pool
(
session
))
!=
SWITCH_STATUS_SUCCESS
)
{
...
...
@@ -1453,12 +1457,15 @@ static void handle_answer(eXosip_event_t * event)
{
int
rate
=
atoi
(
drate
);
int
ms
=
globals
.
codec_ms
;
if
(
!
strcasecmp
(
dname
,
"ilbc"
))
{
ms
=
30
;
}
if
(
switch_core_codec_init
(
&
tech_pvt
->
read_codec
,
dname
,
rate
,
globals
.
codec_
ms
,
ms
,
1
,
SWITCH_CODEC_FLAG_ENCODE
|
SWITCH_CODEC_FLAG_DECODE
,
NULL
,
switch_core_session_get_pool
(
tech_pvt
->
session
))
!=
SWITCH_STATUS_SUCCESS
)
{
...
...
@@ -1469,7 +1476,7 @@ static void handle_answer(eXosip_event_t * event)
if
(
switch_core_codec_init
(
&
tech_pvt
->
write_codec
,
dname
,
rate
,
globals
.
codec_
ms
,
ms
,
1
,
SWITCH_CODEC_FLAG_ENCODE
|
SWITCH_CODEC_FLAG_DECODE
,
NULL
,
...
...
src/mod/endpoints/mod_iax/mod_iax.c
浏览文件 @
56cb227e
...
...
@@ -129,7 +129,7 @@ static struct ast_iana AST_IANA[] = { {AST_FORMAT_G723_1, 4, "g723.1"},
{
AST_FORMAT_LPC10
,
7
,
"lpc10"
},
{
AST_FORMAT_G729A
,
18
,
"g729"
},
{
AST_FORMAT_SPEEX
,
98
,
"speex"
},
{
AST_FORMAT_ILBC
,
999
,
"ilbc"
},
{
AST_FORMAT_ILBC
,
102
,
"ilbc"
},
{
AST_FORMAT_MAX_AUDIO
,
999
,
""
},
{
AST_FORMAT_JPEG
,
999
,
""
},
{
AST_FORMAT_PNG
,
999
,
""
},
...
...
src/switch_buffer.c
浏览文件 @
56cb227e
...
...
@@ -31,10 +31,13 @@
*/
#include <switch_buffer.h>
static
uint32_t
buffer_id
=
0
;
struct
switch_buffer
{
unsigned
char
*
data
;
switch_size_t
used
;
switch_size_t
datalen
;
uint32_t
id
;
};
SWITCH_DECLARE
(
switch_status
)
switch_buffer_create
(
switch_memory_pool
*
pool
,
switch_buffer
**
buffer
,
switch_size_t
max_len
)
...
...
@@ -44,6 +47,7 @@ SWITCH_DECLARE(switch_status) switch_buffer_create(switch_memory_pool *pool, swi
if
((
new_buffer
=
switch_core_alloc
(
pool
,
sizeof
(
switch_buffer
)))
!=
0
&&
(
new_buffer
->
data
=
switch_core_alloc
(
pool
,
max_len
))
!=
0
)
{
new_buffer
->
datalen
=
max_len
;
new_buffer
->
id
=
buffer_id
++
;
*
buffer
=
new_buffer
;
return
SWITCH_STATUS_SUCCESS
;
}
...
...
@@ -115,7 +119,7 @@ SWITCH_DECLARE(switch_size_t) switch_buffer_read(switch_buffer *buffer, void *da
memcpy
(
data
,
buffer
->
data
,
reading
);
memmove
(
buffer
->
data
,
buffer
->
data
+
reading
,
buffer
->
datalen
-
reading
);
buffer
->
used
-=
reading
;
//
printf("o %d = %d\n", reading,
buffer->used);
//
if (buffer->id == 3) printf("%u o %d = %d\n", buffer->id, (uint32_t)reading, (uint32_t)
buffer->used);
return
reading
;
}
...
...
@@ -126,16 +130,16 @@ SWITCH_DECLARE(switch_size_t) switch_buffer_write(switch_buffer *buffer, void *d
assert
(
buffer
!=
NULL
);
assert
(
data
!=
NULL
);
assert
(
buffer
->
data
!=
NULL
);
freespace
=
buffer
->
datalen
-
buffer
->
used
;
if
(
freespace
<
datalen
)
{
return
0
;
}
else
{
memcpy
(
buffer
->
data
+
buffer
->
used
,
data
,
datalen
);
buffer
->
used
+=
datalen
;
}
//printf("i %d = %d\n", datalen, buffer->used);
//if (buffer->id == 3) printf("%u i %d = %d\n", buffer->id, (uint32_t)datalen, (uint32_t)buffer->used);
return
buffer
->
used
;
}
...
...
src/switch_core.c
浏览文件 @
56cb227e
...
...
@@ -1265,7 +1265,7 @@ SWITCH_DECLARE(switch_status) switch_core_session_write_frame(switch_core_sessio
}
}
if
(
!
(
switch_buffer_write
(
session
->
raw_write_buffer
,
write_frame
->
data
,
write_frame
->
datalen
)))
{
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_ERROR
,
"Write Buffer
Failed!
\n
"
);
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_ERROR
,
"Write Buffer
%u bytes Failed!
\n
"
,
write_frame
->
datalen
);
return
SWITCH_STATUS_MEMERR
;
}
}
...
...
@@ -1374,9 +1374,12 @@ SWITCH_DECLARE(switch_status) switch_core_session_write_frame(switch_core_sessio
write_frame
->
datalen
=
session
->
read_resampler
->
to_len
*
2
;
write_frame
->
rate
=
session
->
read_resampler
->
to_rate
;
}
return
perform_write
(
session
,
write_frame
,
timeout
,
io_flag
,
stream_id
);
if
((
status
=
perform_write
(
session
,
write_frame
,
timeout
,
io_flag
,
stream_id
))
!=
SWITCH_STATUS_SUCCESS
)
{
break
;
}
}
}
return
status
;
}
}
}
...
...
src/switch_ivr.c
浏览文件 @
56cb227e
...
...
@@ -266,6 +266,7 @@ SWITCH_DECLARE(switch_status) switch_ivr_play_file(switch_core_session *session,
int
stream_id
;
switch_status
status
=
SWITCH_STATUS_SUCCESS
;
switch_file_handle
lfh
;
switch_codec
*
read_codec
=
switch_core_session_get_read_codec
(
session
);
if
(
!
fh
)
{
fh
=
&
lfh
;
...
...
@@ -290,10 +291,9 @@ SWITCH_DECLARE(switch_status) switch_ivr_play_file(switch_core_session *session,
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_DEBUG
,
"OPEN FILE %s %uhz %u channels
\n
"
,
file
,
fh
->
samplerate
,
fh
->
channels
);
interval
=
2
0
;
samples
=
((
fh
->
samplerate
/
50
)
*
fh
->
channels
)
;
interval
=
read_codec
->
implementation
->
microseconds_per_frame
/
100
0
;
samples
=
read_codec
->
implementation
->
bytes_per_frame
/
2
;
len
=
samples
*
2
;
codec_name
=
"L16"
;
if
(
switch_core_codec_init
(
&
codec
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论