Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
d92ee88a
提交
d92ee88a
authored
3月 30, 2006
作者:
Michael Jerris
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
dos2unix gsm
git-svn-id:
http://svn.freeswitch.org/svn/freeswitch/trunk@966
d0543943-73ff-0310-b7d9-9358b9ac24b2
上级
e3d0adb8
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
19 个修改的文件
包含
4213 行增加
和
4214 行删除
+4213
-4214
config.h
libs/codec/gsm/inc/config.h
+38
-38
gsm.h
libs/codec/gsm/inc/gsm.h
+72
-72
private.h
libs/codec/gsm/inc/private.h
+269
-269
proto.h
libs/codec/gsm/inc/proto.h
+66
-66
unproto.h
libs/codec/gsm/inc/unproto.h
+24
-24
add.c
libs/codec/gsm/src/add.c
+235
-236
code.c
libs/codec/gsm/src/code.c
+99
-99
decode.c
libs/codec/gsm/src/decode.c
+64
-64
gsm_create.c
libs/codec/gsm/src/gsm_create.c
+46
-46
gsm_decode.c
libs/codec/gsm/src/gsm_decode.c
+362
-362
gsm_destroy.c
libs/codec/gsm/src/gsm_destroy.c
+27
-27
gsm_encode.c
libs/codec/gsm/src/gsm_encode.c
+452
-452
gsm_lpc.c
libs/codec/gsm/src/gsm_lpc.c
+342
-342
gsm_option.c
libs/codec/gsm/src/gsm_option.c
+70
-70
long_term.c
libs/codec/gsm/src/long_term.c
+950
-950
preprocess.c
libs/codec/gsm/src/preprocess.c
+114
-114
rpe.c
libs/codec/gsm/src/rpe.c
+489
-489
short_term.c
libs/codec/gsm/src/short_term.c
+430
-430
table.c
libs/codec/gsm/src/table.c
+64
-64
没有找到文件。
libs/codec/gsm/inc/config.h
浏览文件 @
d92ee88a
/*
* config.h
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
#ifndef CONFIG_H
#define CONFIG_H
/*efine SIGHANDLER_T int * signal handlers are void */
/*efine HAS_SYSV_SIGNAL 1 * sigs not blocked/reset? */
#define HAS_STDLIB_H 1
/* /usr/include/stdlib.h */
/*efine HAS_LIMITS_H 1 * /usr/include/limits.h */
#define HAS_FCNTL_H 1
/* /usr/include/fcntl.h */
/*efine HAS_ERRNO_DECL 1 * errno.h declares errno */
#define HAS_FSTAT 1
/* fstat syscall */
#define HAS_FCHMOD 1
/* fchmod syscall */
#define HAS_CHMOD 1
/* chmod syscall */
#define HAS_FCHOWN 1
/* fchown syscall */
#define HAS_CHOWN 1
/* chown syscall */
/*efine HAS__FSETMODE 1 * _fsetmode -- set file mode */
#define HAS_STRING_H 1
/* /usr/include/string.h */
/*efine HAS_STRINGS_H 1 * /usr/include/strings.h */
#define HAS_UNISTD_H 1
/* /usr/include/unistd.h */
#define HAS_UTIME 1
/* POSIX utime(path, times) */
/*efine HAS_UTIMES 1 * use utimes() syscall instead */
#define HAS_UTIME_H 1
/* UTIME header file */
/*efine HAS_UTIMBUF 1 * struct utimbuf */
/*efine HAS_UTIMEUSEC 1 * microseconds in utimbuf? */
#endif
/* CONFIG_H */
/*
* config.h
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
#ifndef CONFIG_H
#define CONFIG_H
/*efine SIGHANDLER_T int * signal handlers are void */
/*efine HAS_SYSV_SIGNAL 1 * sigs not blocked/reset? */
#define HAS_STDLIB_H 1
/* /usr/include/stdlib.h */
/*efine HAS_LIMITS_H 1 * /usr/include/limits.h */
#define HAS_FCNTL_H 1
/* /usr/include/fcntl.h */
/*efine HAS_ERRNO_DECL 1 * errno.h declares errno */
#define HAS_FSTAT 1
/* fstat syscall */
#define HAS_FCHMOD 1
/* fchmod syscall */
#define HAS_CHMOD 1
/* chmod syscall */
#define HAS_FCHOWN 1
/* fchown syscall */
#define HAS_CHOWN 1
/* chown syscall */
/*efine HAS__FSETMODE 1 * _fsetmode -- set file mode */
#define HAS_STRING_H 1
/* /usr/include/string.h */
/*efine HAS_STRINGS_H 1 * /usr/include/strings.h */
#define HAS_UNISTD_H 1
/* /usr/include/unistd.h */
#define HAS_UTIME 1
/* POSIX utime(path, times) */
/*efine HAS_UTIMES 1 * use utimes() syscall instead */
#define HAS_UTIME_H 1
/* UTIME header file */
/*efine HAS_UTIMBUF 1 * struct utimbuf */
/*efine HAS_UTIMEUSEC 1 * microseconds in utimbuf? */
#endif
/* CONFIG_H */
libs/codec/gsm/inc/gsm.h
浏览文件 @
d92ee88a
/*
* gsm.h
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
#ifndef GSM_H
#define GSM_H
#ifdef __cplusplus
# define NeedFunctionPrototypes 1
#endif
#if __STDC__
# define NeedFunctionPrototypes 1
#endif
#ifdef _NO_PROTO
# undef NeedFunctionPrototypes
#endif
#ifdef NeedFunctionPrototypes
# include <stdio.h>
/* for FILE * */
#endif
#undef GSM_P
#if NeedFunctionPrototypes
# define GSM_P( protos ) protos
#else
# define GSM_P( protos ) (
/* protos */
)
#endif
/*
* Interface
*/
typedef
struct
gsm_state
*
gsm
;
typedef
short
gsm_signal
;
/* signed 16 bit */
typedef
unsigned
char
gsm_byte
;
typedef
gsm_byte
gsm_frame
[
33
];
/* 33 * 8 bits */
#define GSM_MAGIC 0xD
/* 13 kbit/s RPE-LTP */
#define GSM_PATCHLEVEL 10
#define GSM_MINOR 0
#define GSM_MAJOR 1
#define GSM_OPT_VERBOSE 1
#define GSM_OPT_FAST 2
#define GSM_OPT_LTP_CUT 3
#define GSM_OPT_WAV49 4
#define GSM_OPT_FRAME_INDEX 5
#define GSM_OPT_FRAME_CHAIN 6
extern
gsm
gsm_create
GSM_P
((
void
));
extern
void
gsm_destroy
GSM_P
((
gsm
));
extern
int
gsm_print
GSM_P
((
FILE
*
,
gsm
,
gsm_byte
*
));
extern
int
gsm_option
GSM_P
((
gsm
,
int
,
int
*
));
extern
void
gsm_encode
GSM_P
((
gsm
,
gsm_signal
*
,
gsm_byte
*
));
extern
int
gsm_decode
GSM_P
((
gsm
,
gsm_byte
*
,
gsm_signal
*
));
extern
int
gsm_explode
GSM_P
((
gsm
,
gsm_byte
*
,
gsm_signal
*
));
extern
void
gsm_implode
GSM_P
((
gsm
,
gsm_signal
*
,
gsm_byte
*
));
#undef GSM_P
#endif
/* GSM_H */
/*
* gsm.h
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
#ifndef GSM_H
#define GSM_H
#ifdef __cplusplus
# define NeedFunctionPrototypes 1
#endif
#if __STDC__
# define NeedFunctionPrototypes 1
#endif
#ifdef _NO_PROTO
# undef NeedFunctionPrototypes
#endif
#ifdef NeedFunctionPrototypes
# include <stdio.h>
/* for FILE * */
#endif
#undef GSM_P
#if NeedFunctionPrototypes
# define GSM_P( protos ) protos
#else
# define GSM_P( protos ) (
/* protos */
)
#endif
/*
* Interface
*/
typedef
struct
gsm_state
*
gsm
;
typedef
short
gsm_signal
;
/* signed 16 bit */
typedef
unsigned
char
gsm_byte
;
typedef
gsm_byte
gsm_frame
[
33
];
/* 33 * 8 bits */
#define GSM_MAGIC 0xD
/* 13 kbit/s RPE-LTP */
#define GSM_PATCHLEVEL 10
#define GSM_MINOR 0
#define GSM_MAJOR 1
#define GSM_OPT_VERBOSE 1
#define GSM_OPT_FAST 2
#define GSM_OPT_LTP_CUT 3
#define GSM_OPT_WAV49 4
#define GSM_OPT_FRAME_INDEX 5
#define GSM_OPT_FRAME_CHAIN 6
extern
gsm
gsm_create
GSM_P
((
void
));
extern
void
gsm_destroy
GSM_P
((
gsm
));
extern
int
gsm_print
GSM_P
((
FILE
*
,
gsm
,
gsm_byte
*
));
extern
int
gsm_option
GSM_P
((
gsm
,
int
,
int
*
));
extern
void
gsm_encode
GSM_P
((
gsm
,
gsm_signal
*
,
gsm_byte
*
));
extern
int
gsm_decode
GSM_P
((
gsm
,
gsm_byte
*
,
gsm_signal
*
));
extern
int
gsm_explode
GSM_P
((
gsm
,
gsm_byte
*
,
gsm_signal
*
));
extern
void
gsm_implode
GSM_P
((
gsm
,
gsm_signal
*
,
gsm_byte
*
));
#undef GSM_P
#endif
/* GSM_H */
libs/codec/gsm/inc/private.h
浏览文件 @
d92ee88a
差异被折叠。
点击展开。
libs/codec/gsm/inc/proto.h
浏览文件 @
d92ee88a
/*
* proto.h
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
#ifndef PROTO_H
#define PROTO_H
#if __cplusplus
# define NeedFunctionPrototypes 1
#endif
#if __STDC__
# define NeedFunctionPrototypes 1
#endif
#ifdef _NO_PROTO
# undef NeedFunctionPrototypes
#endif
#undef P
/* gnu stdio.h actually defines this... */
#undef P0
#undef P1
#undef P2
#undef P3
#undef P4
#undef P5
#undef P6
#undef P7
#undef P8
#if NeedFunctionPrototypes
# define P( protos ) protos
# define P0() (void)
# define P1(x, a) (a)
# define P2(x, a, b) (a, b)
# define P3(x, a, b, c) (a, b, c)
# define P4(x, a, b, c, d) (a, b, c, d)
# define P5(x, a, b, c, d, e) (a, b, c, d, e)
# define P6(x, a, b, c, d, e, f) (a, b, c, d, e, f)
# define P7(x, a, b, c, d, e, f, g) (a, b, c, d, e, f, g)
# define P8(x, a, b, c, d, e, f, g, h) (a, b, c, d, e, f, g, h)
#else
/* !NeedFunctionPrototypes */
# define P( protos ) (
/* protos */
)
# define P0() ()
# define P1(x, a) x a;
# define P2(x, a, b) x a; b;
# define P3(x, a, b, c) x a; b; c;
# define P4(x, a, b, c, d) x a; b; c; d;
# define P5(x, a, b, c, d, e) x a; b; c; d; e;
# define P6(x, a, b, c, d, e, f) x a; b; c; d; e; f;
# define P7(x, a, b, c, d, e, f, g) x a; b; c; d; e; f; g;
# define P8(x, a, b, c, d, e, f, g, h) x a; b; c; d; e; f; g; h;
#endif
/* !NeedFunctionPrototypes */
#endif
/* PROTO_H */
/*
* proto.h
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
#ifndef PROTO_H
#define PROTO_H
#if __cplusplus
# define NeedFunctionPrototypes 1
#endif
#if __STDC__
# define NeedFunctionPrototypes 1
#endif
#ifdef _NO_PROTO
# undef NeedFunctionPrototypes
#endif
#undef P
/* gnu stdio.h actually defines this... */
#undef P0
#undef P1
#undef P2
#undef P3
#undef P4
#undef P5
#undef P6
#undef P7
#undef P8
#if NeedFunctionPrototypes
# define P( protos ) protos
# define P0() (void)
# define P1(x, a) (a)
# define P2(x, a, b) (a, b)
# define P3(x, a, b, c) (a, b, c)
# define P4(x, a, b, c, d) (a, b, c, d)
# define P5(x, a, b, c, d, e) (a, b, c, d, e)
# define P6(x, a, b, c, d, e, f) (a, b, c, d, e, f)
# define P7(x, a, b, c, d, e, f, g) (a, b, c, d, e, f, g)
# define P8(x, a, b, c, d, e, f, g, h) (a, b, c, d, e, f, g, h)
#else
/* !NeedFunctionPrototypes */
# define P( protos ) (
/* protos */
)
# define P0() ()
# define P1(x, a) x a;
# define P2(x, a, b) x a; b;
# define P3(x, a, b, c) x a; b; c;
# define P4(x, a, b, c, d) x a; b; c; d;
# define P5(x, a, b, c, d, e) x a; b; c; d; e;
# define P6(x, a, b, c, d, e, f) x a; b; c; d; e; f;
# define P7(x, a, b, c, d, e, f, g) x a; b; c; d; e; f; g;
# define P8(x, a, b, c, d, e, f, g, h) x a; b; c; d; e; f; g; h;
#endif
/* !NeedFunctionPrototypes */
#endif
/* PROTO_H */
libs/codec/gsm/inc/unproto.h
浏览文件 @
d92ee88a
/*
* unproto.h
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
#ifdef PROTO_H
/* sic */
#undef PROTO_H
#undef P
#undef P0
#undef P1
#undef P2
#undef P3
#undef P4
#undef P5
#undef P6
#undef P7
#undef P8
#endif
/* PROTO_H */
/*
* unproto.h
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
#ifdef PROTO_H
/* sic */
#undef PROTO_H
#undef P
#undef P0
#undef P1
#undef P2
#undef P3
#undef P4
#undef P5
#undef P6
#undef P7
#undef P8
#endif
/* PROTO_H */
libs/codec/gsm/src/add.c
浏览文件 @
d92ee88a
差异被折叠。
点击展开。
libs/codec/gsm/src/code.c
浏览文件 @
d92ee88a
/*
* code.c
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
#include "config.h"
#ifdef HAS_STRING_H
#include <string.h>
#else
#include "proto.h"
extern
char
*
memcpy
P
((
char
*
,
char
*
,
int
));
#endif
#include "private.h"
#include "gsm.h"
#include "proto.h"
/*
* 4.2 FIXED POINT IMPLEMENTATION OF THE RPE-LTP CODER
*/
void
Gsm_Coder
P8
((
S
,
s
,
LARc
,
Nc
,
bc
,
Mc
,
xmaxc
,
xMc
),
struct
gsm_state
*
S
,
word
*
s
,
/* [0..159] samples IN */
/*
* The RPE-LTD coder works on a frame by frame basis. The length of
* the frame is equal to 160 samples. Some computations are done
* once per frame to produce at the output of the coder the
* LARc[1..8] parameters which are the coded LAR coefficients and
* also to realize the inverse filtering operation for the entire
* frame (160 samples of signal d[0..159]). These parts produce at
* the output of the coder:
*/
word
*
LARc
,
/* [0..7] LAR coefficients OUT */
/*
* Procedure 4.2.11 to 4.2.18 are to be executed four times per
* frame. That means once for each sub-segment RPE-LTP analysis of
* 40 samples. These parts produce at the output of the coder:
*/
word
*
Nc
,
/* [0..3] LTP lag OUT */
word
*
bc
,
/* [0..3] coded LTP gain OUT */
word
*
Mc
,
/* [0..3] RPE grid selection OUT */
word
*
xmaxc
,
/* [0..3] Coded maximum amplitude OUT */
word
*
xMc
/* [13*4] normalized RPE samples OUT */
)
{
int
k
;
word
*
dp
=
S
->
dp0
+
120
;
/* [ -120...-1 ] */
word
*
dpp
=
dp
;
/* [ 0...39 ] */
static
word
e
[
50
];
word
so
[
160
];
Gsm_Preprocess
(
S
,
s
,
so
);
Gsm_LPC_Analysis
(
S
,
so
,
LARc
);
Gsm_Short_Term_Analysis_Filter
(
S
,
LARc
,
so
);
for
(
k
=
0
;
k
<=
3
;
k
++
,
xMc
+=
13
)
{
Gsm_Long_Term_Predictor
(
S
,
so
+
k
*
40
,
/* d [0..39] IN */
dp
,
/* dp [-120..-1] IN */
e
+
5
,
/* e [0..39] OUT */
dpp
,
/* dpp [0..39] OUT */
Nc
++
,
bc
++
);
Gsm_RPE_Encoding
(
S
,
e
+
5
,
/* e ][0..39][ IN/OUT */
xmaxc
++
,
Mc
++
,
xMc
);
/*
* Gsm_Update_of_reconstructed_short_time_residual_signal
* ( dpp, e + 5, dp );
*/
{
register
int
i
;
register
longword
ltmp
;
for
(
i
=
0
;
i
<=
39
;
i
++
)
dp
[
i
]
=
(
word
)
GSM_ADD
(
e
[
5
+
i
],
dpp
[
i
]
);
}
dp
+=
40
;
dpp
+=
40
;
}
(
void
)
memcpy
(
(
char
*
)
S
->
dp0
,
(
char
*
)(
S
->
dp0
+
160
),
120
*
sizeof
(
*
S
->
dp0
)
);
}
/*
* code.c
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
#include "config.h"
#ifdef HAS_STRING_H
#include <string.h>
#else
#include "proto.h"
extern
char
*
memcpy
P
((
char
*
,
char
*
,
int
));
#endif
#include "private.h"
#include "gsm.h"
#include "proto.h"
/*
* 4.2 FIXED POINT IMPLEMENTATION OF THE RPE-LTP CODER
*/
void
Gsm_Coder
P8
((
S
,
s
,
LARc
,
Nc
,
bc
,
Mc
,
xmaxc
,
xMc
),
struct
gsm_state
*
S
,
word
*
s
,
/* [0..159] samples IN */
/*
* The RPE-LTD coder works on a frame by frame basis. The length of
* the frame is equal to 160 samples. Some computations are done
* once per frame to produce at the output of the coder the
* LARc[1..8] parameters which are the coded LAR coefficients and
* also to realize the inverse filtering operation for the entire
* frame (160 samples of signal d[0..159]). These parts produce at
* the output of the coder:
*/
word
*
LARc
,
/* [0..7] LAR coefficients OUT */
/*
* Procedure 4.2.11 to 4.2.18 are to be executed four times per
* frame. That means once for each sub-segment RPE-LTP analysis of
* 40 samples. These parts produce at the output of the coder:
*/
word
*
Nc
,
/* [0..3] LTP lag OUT */
word
*
bc
,
/* [0..3] coded LTP gain OUT */
word
*
Mc
,
/* [0..3] RPE grid selection OUT */
word
*
xmaxc
,
/* [0..3] Coded maximum amplitude OUT */
word
*
xMc
/* [13*4] normalized RPE samples OUT */
)
{
int
k
;
word
*
dp
=
S
->
dp0
+
120
;
/* [ -120...-1 ] */
word
*
dpp
=
dp
;
/* [ 0...39 ] */
static
word
e
[
50
];
word
so
[
160
];
Gsm_Preprocess
(
S
,
s
,
so
);
Gsm_LPC_Analysis
(
S
,
so
,
LARc
);
Gsm_Short_Term_Analysis_Filter
(
S
,
LARc
,
so
);
for
(
k
=
0
;
k
<=
3
;
k
++
,
xMc
+=
13
)
{
Gsm_Long_Term_Predictor
(
S
,
so
+
k
*
40
,
/* d [0..39] IN */
dp
,
/* dp [-120..-1] IN */
e
+
5
,
/* e [0..39] OUT */
dpp
,
/* dpp [0..39] OUT */
Nc
++
,
bc
++
);
Gsm_RPE_Encoding
(
S
,
e
+
5
,
/* e ][0..39][ IN/OUT */
xmaxc
++
,
Mc
++
,
xMc
);
/*
* Gsm_Update_of_reconstructed_short_time_residual_signal
* ( dpp, e + 5, dp );
*/
{
register
int
i
;
register
longword
ltmp
;
for
(
i
=
0
;
i
<=
39
;
i
++
)
dp
[
i
]
=
(
word
)
GSM_ADD
(
e
[
5
+
i
],
dpp
[
i
]
);
}
dp
+=
40
;
dpp
+=
40
;
}
(
void
)
memcpy
(
(
char
*
)
S
->
dp0
,
(
char
*
)(
S
->
dp0
+
160
),
120
*
sizeof
(
*
S
->
dp0
)
);
}
libs/codec/gsm/src/decode.c
浏览文件 @
d92ee88a
/*
* decode.c
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
#include <stdio.h>
#include "private.h"
#include "gsm.h"
#include "proto.h"
/*
* 4.3 FIXED POINT IMPLEMENTATION OF THE RPE-LTP DECODER
*/
static
void
Postprocessing
P2
((
S
,
s
),
struct
gsm_state
*
S
,
register
word
*
s
)
{
register
int
k
;
register
word
msr
=
S
->
msr
;
register
longword
ltmp
;
/* for GSM_ADD */
register
word
tmp
;
for
(
k
=
160
;
k
--
;
s
++
)
{
tmp
=
(
word
)
GSM_MULT_R
(
msr
,
28180
);
msr
=
(
word
)
GSM_ADD
(
*
s
,
tmp
);
/* Deemphasis */
*
s
=
(
word
)
GSM_ADD
(
msr
,
msr
)
&
0xFFF8
;
/* Truncation & Upscaling */
}
S
->
msr
=
msr
;
}
void
Gsm_Decoder
P8
((
S
,
LARcr
,
Ncr
,
bcr
,
Mcr
,
xmaxcr
,
xMcr
,
s
),
struct
gsm_state
*
S
,
word
*
LARcr
,
/* [0..7] IN */
word
*
Ncr
,
/* [0..3] IN */
word
*
bcr
,
/* [0..3] IN */
word
*
Mcr
,
/* [0..3] IN */
word
*
xmaxcr
,
/* [0..3] IN */
word
*
xMcr
,
/* [0..13*4] IN */
word
*
s
)
/* [0..159] OUT */
{
int
j
,
k
;
word
erp
[
40
],
wt
[
160
];
word
*
drp
=
S
->
dp0
+
120
;
for
(
j
=
0
;
j
<=
3
;
j
++
,
xmaxcr
++
,
bcr
++
,
Ncr
++
,
Mcr
++
,
xMcr
+=
13
)
{
Gsm_RPE_Decoding
(
S
,
*
xmaxcr
,
*
Mcr
,
xMcr
,
erp
);
Gsm_Long_Term_Synthesis_Filtering
(
S
,
*
Ncr
,
*
bcr
,
erp
,
drp
);
for
(
k
=
0
;
k
<=
39
;
k
++
)
wt
[
j
*
40
+
k
]
=
drp
[
k
];
}
Gsm_Short_Term_Synthesis_Filter
(
S
,
LARcr
,
wt
,
s
);
Postprocessing
(
S
,
s
);
}
/*
* decode.c
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
#include <stdio.h>
#include "private.h"
#include "gsm.h"
#include "proto.h"
/*
* 4.3 FIXED POINT IMPLEMENTATION OF THE RPE-LTP DECODER
*/
static
void
Postprocessing
P2
((
S
,
s
),
struct
gsm_state
*
S
,
register
word
*
s
)
{
register
int
k
;
register
word
msr
=
S
->
msr
;
register
longword
ltmp
;
/* for GSM_ADD */
register
word
tmp
;
for
(
k
=
160
;
k
--
;
s
++
)
{
tmp
=
(
word
)
GSM_MULT_R
(
msr
,
28180
);
msr
=
(
word
)
GSM_ADD
(
*
s
,
tmp
);
/* Deemphasis */
*
s
=
(
word
)
GSM_ADD
(
msr
,
msr
)
&
0xFFF8
;
/* Truncation & Upscaling */
}
S
->
msr
=
msr
;
}
void
Gsm_Decoder
P8
((
S
,
LARcr
,
Ncr
,
bcr
,
Mcr
,
xmaxcr
,
xMcr
,
s
),
struct
gsm_state
*
S
,
word
*
LARcr
,
/* [0..7] IN */
word
*
Ncr
,
/* [0..3] IN */
word
*
bcr
,
/* [0..3] IN */
word
*
Mcr
,
/* [0..3] IN */
word
*
xmaxcr
,
/* [0..3] IN */
word
*
xMcr
,
/* [0..13*4] IN */
word
*
s
)
/* [0..159] OUT */
{
int
j
,
k
;
word
erp
[
40
],
wt
[
160
];
word
*
drp
=
S
->
dp0
+
120
;
for
(
j
=
0
;
j
<=
3
;
j
++
,
xmaxcr
++
,
bcr
++
,
Ncr
++
,
Mcr
++
,
xMcr
+=
13
)
{
Gsm_RPE_Decoding
(
S
,
*
xmaxcr
,
*
Mcr
,
xMcr
,
erp
);
Gsm_Long_Term_Synthesis_Filtering
(
S
,
*
Ncr
,
*
bcr
,
erp
,
drp
);
for
(
k
=
0
;
k
<=
39
;
k
++
)
wt
[
j
*
40
+
k
]
=
drp
[
k
];
}
Gsm_Short_Term_Synthesis_Filter
(
S
,
LARcr
,
wt
,
s
);
Postprocessing
(
S
,
s
);
}
libs/codec/gsm/src/gsm_create.c
浏览文件 @
d92ee88a
/*
* gsm_create.c
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
#include "config.h"
#ifdef HAS_STRING_H
#include <string.h>
#else
# include "proto.h"
extern
char
*
memset
P
((
char
*
,
int
,
int
));
#endif
#ifdef HAS_STDLIB_H
# include <stdlib.h>
#else
# ifdef HAS_MALLOC_H
# include <malloc.h>
# else
extern
char
*
malloc
();
# endif
#endif
#include <stdio.h>
#include "gsm.h"
#include "private.h"
#include "proto.h"
gsm
gsm_create
P0
()
{
gsm
r
;
r
=
(
gsm
)
malloc
(
sizeof
(
struct
gsm_state
));
if
(
!
r
)
return
r
;
memset
((
char
*
)
r
,
0
,
sizeof
(
*
r
));
r
->
nrp
=
40
;
return
r
;
}
/*
* gsm_create.c
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
#include "config.h"
#ifdef HAS_STRING_H
#include <string.h>
#else
# include "proto.h"
extern
char
*
memset
P
((
char
*
,
int
,
int
));
#endif
#ifdef HAS_STDLIB_H
# include <stdlib.h>
#else
# ifdef HAS_MALLOC_H
# include <malloc.h>
# else
extern
char
*
malloc
();
# endif
#endif
#include <stdio.h>
#include "gsm.h"
#include "private.h"
#include "proto.h"
gsm
gsm_create
P0
()
{
gsm
r
;
r
=
(
gsm
)
malloc
(
sizeof
(
struct
gsm_state
));
if
(
!
r
)
return
r
;
memset
((
char
*
)
r
,
0
,
sizeof
(
*
r
));
r
->
nrp
=
40
;
return
r
;
}
libs/codec/gsm/src/gsm_decode.c
浏览文件 @
d92ee88a
差异被折叠。
点击展开。
libs/codec/gsm/src/gsm_destroy.c
浏览文件 @
d92ee88a
/*
* gsm_destroy.c
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
#include "gsm.h"
#include "config.h"
#include "proto.h"
#ifdef HAS_STDLIB_H
# include <stdlib.h>
#else
# ifdef HAS_MALLOC_H
# include <malloc.h>
# else
extern
void
free
();
# endif
#endif
void
gsm_destroy
P1
((
S
),
gsm
S
)
{
if
(
S
)
free
((
char
*
)
S
);
}
/*
* gsm_destroy.c
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
#include "gsm.h"
#include "config.h"
#include "proto.h"
#ifdef HAS_STDLIB_H
# include <stdlib.h>
#else
# ifdef HAS_MALLOC_H
# include <malloc.h>
# else
extern
void
free
();
# endif
#endif
void
gsm_destroy
P1
((
S
),
gsm
S
)
{
if
(
S
)
free
((
char
*
)
S
);
}
libs/codec/gsm/src/gsm_encode.c
浏览文件 @
d92ee88a
差异被折叠。
点击展开。
libs/codec/gsm/src/gsm_lpc.c
浏览文件 @
d92ee88a
差异被折叠。
点击展开。
libs/codec/gsm/src/gsm_option.c
浏览文件 @
d92ee88a
/*
* gsm_option.c
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
#include "private.h"
#include "gsm.h"
#include "proto.h"
int
gsm_option
P3
((
r
,
opt
,
val
),
gsm
r
,
int
opt
,
int
*
val
)
{
int
result
=
-
1
;
switch
(
opt
)
{
case
GSM_OPT_LTP_CUT
:
#ifdef LTP_CUT
result
=
r
->
ltp_cut
;
if
(
val
)
r
->
ltp_cut
=
*
val
;
#endif
break
;
case
GSM_OPT_VERBOSE
:
#ifndef NDEBUG
result
=
r
->
verbose
;
if
(
val
)
r
->
verbose
=
*
val
;
#endif
break
;
case
GSM_OPT_FAST
:
#if defined(FAST) && defined(USE_FLOAT_MUL)
result
=
r
->
fast
;
if
(
val
)
r
->
fast
=
!!*
val
;
#endif
break
;
case
GSM_OPT_FRAME_CHAIN
:
#ifdef WAV49
result
=
r
->
frame_chain
;
if
(
val
)
r
->
frame_chain
=
*
val
;
#endif
break
;
case
GSM_OPT_FRAME_INDEX
:
#ifdef WAV49
result
=
r
->
frame_index
;
if
(
val
)
r
->
frame_index
=
*
val
;
#endif
break
;
case
GSM_OPT_WAV49
:
#ifdef WAV49
result
=
r
->
wav_fmt
;
if
(
val
)
r
->
wav_fmt
=
!!*
val
;
#endif
break
;
default:
break
;
}
return
result
;
}
/*
* gsm_option.c
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
#include "private.h"
#include "gsm.h"
#include "proto.h"
int
gsm_option
P3
((
r
,
opt
,
val
),
gsm
r
,
int
opt
,
int
*
val
)
{
int
result
=
-
1
;
switch
(
opt
)
{
case
GSM_OPT_LTP_CUT
:
#ifdef LTP_CUT
result
=
r
->
ltp_cut
;
if
(
val
)
r
->
ltp_cut
=
*
val
;
#endif
break
;
case
GSM_OPT_VERBOSE
:
#ifndef NDEBUG
result
=
r
->
verbose
;
if
(
val
)
r
->
verbose
=
*
val
;
#endif
break
;
case
GSM_OPT_FAST
:
#if defined(FAST) && defined(USE_FLOAT_MUL)
result
=
r
->
fast
;
if
(
val
)
r
->
fast
=
!!*
val
;
#endif
break
;
case
GSM_OPT_FRAME_CHAIN
:
#ifdef WAV49
result
=
r
->
frame_chain
;
if
(
val
)
r
->
frame_chain
=
*
val
;
#endif
break
;
case
GSM_OPT_FRAME_INDEX
:
#ifdef WAV49
result
=
r
->
frame_index
;
if
(
val
)
r
->
frame_index
=
*
val
;
#endif
break
;
case
GSM_OPT_WAV49
:
#ifdef WAV49
result
=
r
->
wav_fmt
;
if
(
val
)
r
->
wav_fmt
=
!!*
val
;
#endif
break
;
default:
break
;
}
return
result
;
}
libs/codec/gsm/src/long_term.c
浏览文件 @
d92ee88a
差异被折叠。
点击展开。
libs/codec/gsm/src/preprocess.c
浏览文件 @
d92ee88a
/*
* preprocess.c
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
#include <stdio.h>
#include <assert.h>
#include "private.h"
#include "gsm.h"
#include "proto.h"
/* 4.2.0 .. 4.2.3 PREPROCESSING SECTION
*
* After A-law to linear conversion (or directly from the
* Ato D converter) the following scaling is assumed for
* input to the RPE-LTP algorithm:
*
* in: 0.1.....................12
* S.v.v.v.v.v.v.v.v.v.v.v.v.*.*.*
*
* Where S is the sign bit, v a valid bit, and * a "don't care" bit.
* The original signal is called sop[..]
*
* out: 0.1................... 12
* S.S.v.v.v.v.v.v.v.v.v.v.v.v.0.0
*/
void
Gsm_Preprocess
P3
((
S
,
s
,
so
),
struct
gsm_state
*
S
,
word
*
s
,
word
*
so
)
/* [0..159] IN/OUT */
{
word
z1
=
S
->
z1
;
longword
L_z2
=
S
->
L_z2
;
word
mp
=
S
->
mp
;
word
s1
;
longword
L_s2
;
longword
L_temp
;
word
msp
,
lsp
;
word
SO
;
longword
ltmp
;
/* for ADD */
ulongword
utmp
;
/* for L_ADD */
register
int
k
=
160
;
while
(
k
--
)
{
/* 4.2.1 Downscaling of the input signal
*/
SO
=
SASR
(
*
s
,
3
)
<<
2
;
s
++
;
assert
(
SO
>=
-
0x4000
);
/* downscaled by */
assert
(
SO
<=
0x3FFC
);
/* previous routine. */
/* 4.2.2 Offset compensation
*
* This part implements a high-pass filter and requires extended
* arithmetic precision for the recursive part of this filter.
* The input of this procedure is the array so[0...159] and the
* output the array sof[ 0...159 ].
*/
/* Compute the non-recursive part
*/
s1
=
SO
-
z1
;
/* s1 = gsm_sub( *so, z1 ); */
z1
=
SO
;
assert
(
s1
!=
MIN_WORD
);
/* Compute the recursive part
*/
L_s2
=
s1
;
L_s2
<<=
15
;
/* Execution of a 31 bv 16 bits multiplication
*/
msp
=
(
word
)
SASR
(
L_z2
,
15
);
lsp
=
(
word
)
(
L_z2
-
((
longword
)
msp
<<
15
));
/* gsm_L_sub(L_z2,(msp<<15)); */
L_s2
+=
GSM_MULT_R
(
lsp
,
32735
);
L_temp
=
(
longword
)
msp
*
32735
;
/* GSM_L_MULT(msp,32735) >> 1;*/
L_z2
=
GSM_L_ADD
(
L_temp
,
L_s2
);
/* Compute sof[k] with rounding
*/
L_temp
=
GSM_L_ADD
(
L_z2
,
16384
);
/* 4.2.3 Preemphasis
*/
msp
=
(
word
)
GSM_MULT_R
(
mp
,
-
28180
);
mp
=
(
word
)
SASR
(
L_temp
,
15
);
*
so
++
=
(
word
)
GSM_ADD
(
mp
,
msp
);
}
S
->
z1
=
z1
;
S
->
L_z2
=
L_z2
;
S
->
mp
=
mp
;
}
/*
* preprocess.c
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
#include <stdio.h>
#include <assert.h>
#include "private.h"
#include "gsm.h"
#include "proto.h"
/* 4.2.0 .. 4.2.3 PREPROCESSING SECTION
*
* After A-law to linear conversion (or directly from the
* Ato D converter) the following scaling is assumed for
* input to the RPE-LTP algorithm:
*
* in: 0.1.....................12
* S.v.v.v.v.v.v.v.v.v.v.v.v.*.*.*
*
* Where S is the sign bit, v a valid bit, and * a "don't care" bit.
* The original signal is called sop[..]
*
* out: 0.1................... 12
* S.S.v.v.v.v.v.v.v.v.v.v.v.v.0.0
*/
void
Gsm_Preprocess
P3
((
S
,
s
,
so
),
struct
gsm_state
*
S
,
word
*
s
,
word
*
so
)
/* [0..159] IN/OUT */
{
word
z1
=
S
->
z1
;
longword
L_z2
=
S
->
L_z2
;
word
mp
=
S
->
mp
;
word
s1
;
longword
L_s2
;
longword
L_temp
;
word
msp
,
lsp
;
word
SO
;
longword
ltmp
;
/* for ADD */
ulongword
utmp
;
/* for L_ADD */
register
int
k
=
160
;
while
(
k
--
)
{
/* 4.2.1 Downscaling of the input signal
*/
SO
=
SASR
(
*
s
,
3
)
<<
2
;
s
++
;
assert
(
SO
>=
-
0x4000
);
/* downscaled by */
assert
(
SO
<=
0x3FFC
);
/* previous routine. */
/* 4.2.2 Offset compensation
*
* This part implements a high-pass filter and requires extended
* arithmetic precision for the recursive part of this filter.
* The input of this procedure is the array so[0...159] and the
* output the array sof[ 0...159 ].
*/
/* Compute the non-recursive part
*/
s1
=
SO
-
z1
;
/* s1 = gsm_sub( *so, z1 ); */
z1
=
SO
;
assert
(
s1
!=
MIN_WORD
);
/* Compute the recursive part
*/
L_s2
=
s1
;
L_s2
<<=
15
;
/* Execution of a 31 bv 16 bits multiplication
*/
msp
=
(
word
)
SASR
(
L_z2
,
15
);
lsp
=
(
word
)
(
L_z2
-
((
longword
)
msp
<<
15
));
/* gsm_L_sub(L_z2,(msp<<15)); */
L_s2
+=
GSM_MULT_R
(
lsp
,
32735
);
L_temp
=
(
longword
)
msp
*
32735
;
/* GSM_L_MULT(msp,32735) >> 1;*/
L_z2
=
GSM_L_ADD
(
L_temp
,
L_s2
);
/* Compute sof[k] with rounding
*/
L_temp
=
GSM_L_ADD
(
L_z2
,
16384
);
/* 4.2.3 Preemphasis
*/
msp
=
(
word
)
GSM_MULT_R
(
mp
,
-
28180
);
mp
=
(
word
)
SASR
(
L_temp
,
15
);
*
so
++
=
(
word
)
GSM_ADD
(
mp
,
msp
);
}
S
->
z1
=
z1
;
S
->
L_z2
=
L_z2
;
S
->
mp
=
mp
;
}
libs/codec/gsm/src/rpe.c
浏览文件 @
d92ee88a
差异被折叠。
点击展开。
libs/codec/gsm/src/short_term.c
浏览文件 @
d92ee88a
差异被折叠。
点击展开。
libs/codec/gsm/src/table.c
浏览文件 @
d92ee88a
/*
* table.c
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
/* Most of these tables are inlined at their point of use.
*/
/* 4.4 TABLES USED IN THE FIXED POINT IMPLEMENTATION OF THE RPE-LTP
* CODER AND DECODER
*
* (Most of them inlined, so watch out.)
*/
#define GSM_TABLE_C
#include "private.h"
#include "gsm.h"
/* Table 4.1 Quantization of the Log.-Area Ratios
*/
/* i 1 2 3 4 5 6 7 8 */
word
gsm_A
[
8
]
=
{
20480
,
20480
,
20480
,
20480
,
13964
,
15360
,
8534
,
9036
};
word
gsm_B
[
8
]
=
{
0
,
0
,
2048
,
-
2560
,
94
,
-
1792
,
-
341
,
-
1144
};
word
gsm_MIC
[
8
]
=
{
-
32
,
-
32
,
-
16
,
-
16
,
-
8
,
-
8
,
-
4
,
-
4
};
word
gsm_MAC
[
8
]
=
{
31
,
31
,
15
,
15
,
7
,
7
,
3
,
3
};
/* Table 4.2 Tabulation of 1/A[1..8]
*/
word
gsm_INVA
[
8
]
=
{
13107
,
13107
,
13107
,
13107
,
19223
,
17476
,
31454
,
29708
};
/* Table 4.3a Decision level of the LTP gain quantizer
*/
/* bc 0 1 2 3 */
word
gsm_DLB
[
4
]
=
{
6554
,
16384
,
26214
,
32767
};
/* Table 4.3b Quantization levels of the LTP gain quantizer
*/
/* bc 0 1 2 3 */
word
gsm_QLB
[
4
]
=
{
3277
,
11469
,
21299
,
32767
};
/* Table 4.4 Coefficients of the weighting filter
*/
/* i 0 1 2 3 4 5 6 7 8 9 10 */
word
gsm_H
[
11
]
=
{
-
134
,
-
374
,
0
,
2054
,
5741
,
8192
,
5741
,
2054
,
0
,
-
374
,
-
134
};
/* Table 4.5 Normalized inverse mantissa used to compute xM/xmax
*/
/* i 0 1 2 3 4 5 6 7 */
word
gsm_NRFAC
[
8
]
=
{
29128
,
26215
,
23832
,
21846
,
20165
,
18725
,
17476
,
16384
};
/* Table 4.6 Normalized direct mantissa used to compute xM/xmax
*/
/* i 0 1 2 3 4 5 6 7 */
word
gsm_FAC
[
8
]
=
{
18431
,
20479
,
22527
,
24575
,
26623
,
28671
,
30719
,
32767
};
/*
* table.c
*
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
*/
/* Most of these tables are inlined at their point of use.
*/
/* 4.4 TABLES USED IN THE FIXED POINT IMPLEMENTATION OF THE RPE-LTP
* CODER AND DECODER
*
* (Most of them inlined, so watch out.)
*/
#define GSM_TABLE_C
#include "private.h"
#include "gsm.h"
/* Table 4.1 Quantization of the Log.-Area Ratios
*/
/* i 1 2 3 4 5 6 7 8 */
word
gsm_A
[
8
]
=
{
20480
,
20480
,
20480
,
20480
,
13964
,
15360
,
8534
,
9036
};
word
gsm_B
[
8
]
=
{
0
,
0
,
2048
,
-
2560
,
94
,
-
1792
,
-
341
,
-
1144
};
word
gsm_MIC
[
8
]
=
{
-
32
,
-
32
,
-
16
,
-
16
,
-
8
,
-
8
,
-
4
,
-
4
};
word
gsm_MAC
[
8
]
=
{
31
,
31
,
15
,
15
,
7
,
7
,
3
,
3
};
/* Table 4.2 Tabulation of 1/A[1..8]
*/
word
gsm_INVA
[
8
]
=
{
13107
,
13107
,
13107
,
13107
,
19223
,
17476
,
31454
,
29708
};
/* Table 4.3a Decision level of the LTP gain quantizer
*/
/* bc 0 1 2 3 */
word
gsm_DLB
[
4
]
=
{
6554
,
16384
,
26214
,
32767
};
/* Table 4.3b Quantization levels of the LTP gain quantizer
*/
/* bc 0 1 2 3 */
word
gsm_QLB
[
4
]
=
{
3277
,
11469
,
21299
,
32767
};
/* Table 4.4 Coefficients of the weighting filter
*/
/* i 0 1 2 3 4 5 6 7 8 9 10 */
word
gsm_H
[
11
]
=
{
-
134
,
-
374
,
0
,
2054
,
5741
,
8192
,
5741
,
2054
,
0
,
-
374
,
-
134
};
/* Table 4.5 Normalized inverse mantissa used to compute xM/xmax
*/
/* i 0 1 2 3 4 5 6 7 */
word
gsm_NRFAC
[
8
]
=
{
29128
,
26215
,
23832
,
21846
,
20165
,
18725
,
17476
,
16384
};
/* Table 4.6 Normalized direct mantissa used to compute xM/xmax
*/
/* i 0 1 2 3 4 5 6 7 */
word
gsm_FAC
[
8
]
=
{
18431
,
20479
,
22527
,
24575
,
26623
,
28671
,
30719
,
32767
};
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论