forked from Mirrors/freeswitch
Added some const kerywords to parameters.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9476 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
663344afc5
commit
59d134c73a
@ -1058,8 +1058,8 @@ SWITCH_DECLARE(switch_status_t) switch_core_timer_destroy(switch_timer_t *timer)
|
||||
\return SWITCH_STATUS_SUCCESS if the handle is allocated
|
||||
*/
|
||||
SWITCH_DECLARE(switch_status_t) switch_core_codec_init(switch_codec_t *codec,
|
||||
char *codec_name,
|
||||
char *fmtp,
|
||||
const char *codec_name,
|
||||
const char *fmtp,
|
||||
uint32_t rate,
|
||||
int ms,
|
||||
int channels,
|
||||
|
@ -260,13 +260,13 @@ SWITCH_DECLARE(switch_status_t) switch_core_codec_copy(switch_codec_t *codec, sw
|
||||
return SWITCH_STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
SWITCH_DECLARE(switch_status_t) switch_core_codec_init(switch_codec_t *codec, char *codec_name, char *fmtp,
|
||||
SWITCH_DECLARE(switch_status_t) switch_core_codec_init(switch_codec_t *codec, const char *codec_name, const char *fmtp,
|
||||
uint32_t rate, int ms, int channels, uint32_t flags,
|
||||
const switch_codec_settings_t *codec_settings, switch_memory_pool_t *pool)
|
||||
{
|
||||
const switch_codec_interface_t *codec_interface;
|
||||
const switch_codec_implementation_t *iptr, *implementation = NULL;
|
||||
char *mode = fmtp;
|
||||
const char *mode = fmtp;
|
||||
|
||||
switch_assert(codec != NULL);
|
||||
switch_assert(codec_name != NULL);
|
||||
|
Loading…
Reference in New Issue
Block a user