pass thru the fmtp

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7542 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2008-02-07 18:32:03 +00:00
parent de7324a46c
commit 9fbf240404
1 changed files with 3 additions and 0 deletions

View File

@ -45,6 +45,9 @@ static switch_status_t switch_h26x_init(switch_codec_t *codec, switch_codec_flag
if (!(encoding || decoding)) {
return SWITCH_STATUS_FALSE;
} else {
if (codec->fmtp_in) {
codec->fmtp_out = switch_core_strdup(codec->memory_pool, codec->fmtp_in);
}
return SWITCH_STATUS_SUCCESS;
}
}