[feature][T8TSK-20][TCAM_T800_SW_0062] add voice rtp interface, just interface, function dosn't work
Change-Id: I462e324b531c0e6f9aca7054e4a2a0e8f0c4e7b6
diff --git a/lib/liblynq-call/lynq_call.cpp b/lib/liblynq-call/lynq_call.cpp
index fd07b15..742f4b3 100755
--- a/lib/liblynq-call/lynq_call.cpp
+++ b/lib/liblynq-call/lynq_call.cpp
@@ -1565,6 +1565,56 @@
#endif
+/*Audio Path setting begin*/
+/*set*/
+int lynq_set_voice_audio_mode(const LYNQ_Audio_Mode audio_mode)
+{
+ return 0;
+}
+int lynq_set_rtp_ip(const LYNQ_Rtp_Mode rtp_mode,const char* ip, const int ip_length)
+{
+ return 0;
+}
+int lynq_set_rtp_port(const int port)
+{
+ return 0;
+}
+int lynq_set_rtp_param(const int clock_rate,const int channels,const int latency) //only for client mode
+{
+ return 0;
+}
+/*get*/
+LYNQ_Audio_Mode lynq_get_voice_audio_mode()
+{
+ return AUDIO_MODE_CODEC;
+}
+int lynq_get_rtp_ip(const LYNQ_Rtp_Mode rtp_mode, char* ip, const int ip_length)
+{
+ if(ip==NULL)
+ {
+ return 1;
+ }
+ return 0;
+}
+int lynq_get_rtp_port(const LYNQ_Rtp_Mode rtp_mode, int* port)
+{
+ if(port==NULL)
+ {
+ return 1;
+ }
+ return 0;
+}
+int lynq_get_rtp_param(int* clock_rate, int* channels, int* latency)//only for client mode
+{
+ if(clock_rate == NULL || channels ==NULL || latency ==NULL)
+ {
+ return 1;
+ }
+
+ return 0;
+}
+/*Audio Path setting end*/
+
#if 0
int main(int argc,char **argv)
{