diff options
author | Michal Ratajsky <[email protected]> | 2014-06-15 07:15:58 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2014-10-09 16:53:00 +0200 |
commit | d1c86461bebd11bab895ee4e7506233947756870 (patch) | |
tree | 0ef877083534e6a7ea570e238335c1ffe3f7044e /gst-mixer/src/misc.c | |
parent | bab0b217a39165848effb6a04bed629d44ee103d (diff) | |
download | mate-media-d1c86461bebd11bab895ee4e7506233947756870.tar.bz2 mate-media-d1c86461bebd11bab895ee4e7506233947756870.tar.xz |
Kill GStreamer
Diffstat (limited to 'gst-mixer/src/misc.c')
-rw-r--r-- | gst-mixer/src/misc.c | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/gst-mixer/src/misc.c b/gst-mixer/src/misc.c deleted file mode 100644 index 290b328..0000000 --- a/gst-mixer/src/misc.c +++ /dev/null @@ -1,72 +0,0 @@ -/* MATE Volume Control - * Copyright (C) 2003-2004 Ronald Bultje <[email protected]> - * - * misc.c: miscelaneous functions - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, - * Boston, MA 02110-1301, USA. - */ - -#include <gst/interfaces/mixer.h> -#include <gst/interfaces/mixertrack.h> -#include <gst/interfaces/mixeroptions.h> - -#include "misc.h" - -#include <glib.h> -#include <glib/gi18n.h> - -gint get_page_num (GstMixer *mixer, GstMixerTrack *track) -{ - /* is it possible to have a track that does input and output? */ - g_assert (! (GST_MIXER_TRACK_HAS_FLAG (track, GST_MIXER_TRACK_INPUT) - && GST_MIXER_TRACK_HAS_FLAG (track, GST_MIXER_TRACK_OUTPUT))); - - if ((gst_mixer_get_mixer_flags (GST_MIXER (mixer)) & - GST_MIXER_FLAG_GROUPING) == 0) { - /* old style grouping, only volume sliders on the first two pages */ - if (GST_IS_MIXER_OPTIONS (track)) - return 3; - else if (track->num_channels == 0) - return 2; - } - if (GST_MIXER_TRACK_HAS_FLAG (track, GST_MIXER_TRACK_INPUT)) - return 1; - else if (GST_MIXER_TRACK_HAS_FLAG (track, GST_MIXER_TRACK_OUTPUT)) - return 0; - else if (GST_IS_MIXER_OPTIONS (track)) - return 3; - else - return 2; - - g_assert_not_reached (); -} - -gchar *get_page_description (gint n) -{ - /* needs i18n work */ - switch (n) { - case 0: - return _("Playback"); - case 1: - return _("Recording"); - case 2: - return _("Switches"); - case 3: - return _("Options"); - } - - g_assert_not_reached (); -} |