FreeSWITCH.Native.freeswitch.switch_core_codec_decode C# (CSharp) Method

switch_core_codec_decode() public static method

public static switch_core_codec_decode ( switch_codec codec, switch_codec other_codec, SWIGTYPE_p_void encoded_data, uint encoded_data_len, uint encoded_rate, SWIGTYPE_p_void decoded_data, SWIGTYPE_p_unsigned_long decoded_data_len, SWIGTYPE_p_unsigned_long decoded_rate, SWIGTYPE_p_unsigned_int flag ) : switch_status_t
codec switch_codec
other_codec switch_codec
encoded_data SWIGTYPE_p_void
encoded_data_len uint
encoded_rate uint
decoded_data SWIGTYPE_p_void
decoded_data_len SWIGTYPE_p_unsigned_long
decoded_rate SWIGTYPE_p_unsigned_long
flag SWIGTYPE_p_unsigned_int
return switch_status_t
        public static switch_status_t switch_core_codec_decode(switch_codec codec, switch_codec other_codec, SWIGTYPE_p_void encoded_data, uint encoded_data_len, uint encoded_rate, SWIGTYPE_p_void decoded_data, SWIGTYPE_p_unsigned_long decoded_data_len, SWIGTYPE_p_unsigned_long decoded_rate, SWIGTYPE_p_unsigned_int flag)
        {
            switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_core_codec_decode(switch_codec.getCPtr(codec), switch_codec.getCPtr(other_codec), SWIGTYPE_p_void.getCPtr(encoded_data), encoded_data_len, encoded_rate, SWIGTYPE_p_void.getCPtr(decoded_data), SWIGTYPE_p_unsigned_long.getCPtr(decoded_data_len), SWIGTYPE_p_unsigned_long.getCPtr(decoded_rate), SWIGTYPE_p_unsigned_int.getCPtr(flag));
            return ret;
        }
freeswitch