12 #ifndef RTP_AUDIO_ROUTING_H
13 #define RTP_AUDIO_ROUTING_H
25 } audio_routing_channel_t;
35 AudioRouting(
bool muted, audio_routing_channel_t channel);
36 bool isMuted() {
return muted_; }
37 void setMuted(
bool muted) { muted_ = muted; }
38 audio_routing_channel_t getChannel() {
return channel_; }
39 void setChannel(audio_routing_channel_t channel) { channel_ = channel; }
40 char const *formatAudioRoutingToString();
47 audio_routing_channel_t channel_;
51 #define AUDIO_MUTED true
52 #define AUDIO_UNMUTED false
Definition: rtp_audio_routing.h:28