提交 8c964a5c authored 作者: Anthony Minessale's avatar Anthony Minessale

test

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@208 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 c394ef82
......@@ -156,6 +156,23 @@ struct switch_dialplan_interface {
const struct switch_dialplan_interface *next;
};
struct switch_file_interface {
const char *interface_name;
const struct switch_file_interface *next;
const char *extens[];
};
struct switch_file_handle {
const struct switch_file_interface *file_interface;
switch_file_t *fd;
unsigned int sample_count;
switch_codec_flag flags;
switch_memory_pool *memory_pool;
void *private;
};
/* nobody has more setting than speex so we will let them set the standard */
struct switch_codec_settings {
int quality;
......@@ -176,21 +193,6 @@ struct switch_codec_settings {
float pp_dereverb_level;
};
struct switch_file_handle {
const struct switch_file_interface *file_interface;
const struct switch_file_implementation *implementation;
switch_file_t *fd;
unsigned int sample_count;
switch_codec_flag flags;
switch_memory_pool *memory_pool;
void *private;
};
struct switch_file_implementation {
const struct switch_file_implementation *next;
int codec_iananum;
};
struct switch_codec {
const struct switch_codec_interface *codec_interface;
const struct switch_codec_implementation *implementation;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论