Lines Matching refs:channel_mode
80 const gchar *allocation_method, *channel_mode; in gst_sbc_enc_set_format() local
140 channel_mode = gst_structure_get_string (s, "channel-mode"); in gst_sbc_enc_set_format()
144 if (g_strcmp0 (channel_mode, "mono") != 0) { in gst_sbc_enc_set_format()
146 channel_mode); in gst_sbc_enc_set_format()
150 if (g_strcmp0 (channel_mode, "joint") != 0 && in gst_sbc_enc_set_format()
151 g_strcmp0 (channel_mode, "stereo") != 0 && in gst_sbc_enc_set_format()
152 g_strcmp0 (channel_mode, "dual") != 0) { in gst_sbc_enc_set_format()
154 channel_mode); in gst_sbc_enc_set_format()
195 if (channel_mode == NULL || allocation_method == NULL) in gst_sbc_enc_set_format()
198 if (strcmp (channel_mode, "joint") == 0) in gst_sbc_enc_set_format()
200 else if (strcmp (channel_mode, "stereo") == 0) in gst_sbc_enc_set_format()
202 else if (strcmp (channel_mode, "dual") == 0) in gst_sbc_enc_set_format()
204 else if (strcmp (channel_mode, "mono") == 0) in gst_sbc_enc_set_format()
206 else if (strcmp (channel_mode, "auto") == 0) in gst_sbc_enc_set_format()