From 59d134c73aa7194330a3b8c902d3b168922e376a Mon Sep 17 00:00:00 2001 From: Robert Joly Date: Sun, 7 Sep 2008 03:59:39 +0000 Subject: [PATCH] Added some const kerywords to parameters. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9476 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/include/switch_core.h | 4 ++-- src/switch_core_codec.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/include/switch_core.h b/src/include/switch_core.h index f474395da5..2f7a5229be 100644 --- a/src/include/switch_core.h +++ b/src/include/switch_core.h @@ -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, diff --git a/src/switch_core_codec.c b/src/switch_core_codec.c index 8d098cc174..661aad50d6 100644 --- a/src/switch_core_codec.c +++ b/src/switch_core_codec.c @@ -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);