api/libmm-glib/cli: add AudioPort and AudioFormat properties to the Call object

This commit is contained in:
Dan Williams
2017-02-06 20:53:39 -06:00
parent 16162a5033
commit 627303a748
10 changed files with 678 additions and 2 deletions

View File

@@ -724,6 +724,21 @@ mm_base_call_received_dtmf (MMBaseCall *self,
mm_gdbus_call_emit_dtmf_received (MM_GDBUS_CALL (self), dtmf);
}
void
mm_base_call_set_audio_port (MMBaseCall *self, const gchar *port)
{
mm_gdbus_call_set_audio_port (MM_GDBUS_CALL (self), port);
}
void
mm_base_call_set_audio_format (MMBaseCall *self,
MMCallAudioFormat *audio_format)
{
mm_gdbus_call_set_audio_format (
MM_GDBUS_CALL (self),
mm_call_audio_format_get_dictionary (audio_format));
}
/*****************************************************************************/
/* Start the CALL */