mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
sys/sunaudio/: Actually translate sunaudio mixer track labels instead of just marking the strings as translatable (#3...
Original commit message from CVS: * sys/sunaudio/gstsunaudio.c: (plugin_init): * sys/sunaudio/gstsunaudiomixertrack.c: (gst_sunaudiomixer_track_new): Actually translate sunaudio mixer track labels instead of just marking the strings as translatable (#377306); clean up weird label string mapping code that serves no apparent purpose. Also set the 'untranslated-label' property when creating mixer tracks if the GstMixerTrack base class supports this. * tests/check/Makefile.am: * tests/check/elements/.cvsignore: * tests/check/elements/sunaudio.c: (GST_START_TEST), (sunaudio_suite): Very minimalistic unit test for sunaudiomixer element (compiles, but not actually tested on a system where sunaudiomixer is available).
This commit is contained in:
parent
d44570cfdd
commit
c3e99dd86c
6 changed files with 148 additions and 33 deletions
18
ChangeLog
18
ChangeLog
|
@ -1,3 +1,21 @@
|
|||
2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* sys/sunaudio/gstsunaudio.c: (plugin_init):
|
||||
* sys/sunaudio/gstsunaudiomixertrack.c:
|
||||
(gst_sunaudiomixer_track_new):
|
||||
Actually translate sunaudio mixer track labels instead of just
|
||||
marking the strings as translatable (#377306); clean up weird
|
||||
label string mapping code that serves no apparent purpose. Also
|
||||
set the 'untranslated-label' property when creating mixer tracks
|
||||
if the GstMixerTrack base class supports this.
|
||||
|
||||
* tests/check/Makefile.am:
|
||||
* tests/check/elements/.cvsignore:
|
||||
* tests/check/elements/sunaudio.c: (GST_START_TEST),
|
||||
(sunaudio_suite):
|
||||
Very minimalistic unit test for sunaudiomixer element (compiles, but not
|
||||
actually tested on a system where sunaudiomixer is available).
|
||||
|
||||
2007-03-09 Jan Schmidt <thaytan@mad.scientist.com>
|
||||
|
||||
* tests/check/Makefile.am:
|
||||
|
|
|
@ -49,6 +49,7 @@ plugin_init (GstPlugin * plugin)
|
|||
#ifdef ENABLE_NLS
|
||||
setlocale (LC_ALL, "");
|
||||
bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
|
||||
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
|
||||
#endif /* ENABLE_NLS */
|
||||
|
||||
return TRUE;
|
||||
|
|
|
@ -57,48 +57,35 @@ gst_sunaudiomixer_track_init (GstSunAudioMixerTrack * track)
|
|||
track->track_num = 0;
|
||||
}
|
||||
|
||||
static const gchar **labels = NULL;
|
||||
|
||||
static void
|
||||
fill_labels (void)
|
||||
{
|
||||
int i;
|
||||
struct
|
||||
{
|
||||
gchar *given, *wanted;
|
||||
}
|
||||
cases[] = {
|
||||
{
|
||||
"Vol ", N_("Volume")}
|
||||
, {
|
||||
"Gain ", N_("Gain")}
|
||||
, {
|
||||
"Mon ", N_("Monitor")}
|
||||
, {
|
||||
NULL, NULL}
|
||||
};
|
||||
|
||||
labels = g_malloc (sizeof (gchar *) * MIXER_DEVICES);
|
||||
|
||||
for (i = 0; i < MIXER_DEVICES; i++) {
|
||||
labels[i] = g_strdup (cases[i].wanted);
|
||||
}
|
||||
}
|
||||
|
||||
GstMixerTrack *
|
||||
gst_sunaudiomixer_track_new (GstSunAudioTrackType track_num,
|
||||
gint max_chans, gint flags)
|
||||
{
|
||||
const gchar *labels[] = { N_("Volume"), N_("Gain"), N_("Monitor") };
|
||||
|
||||
GstSunAudioMixerTrack *sunaudiotrack;
|
||||
GstMixerTrack *track;
|
||||
GObjectClass *klass;
|
||||
const gchar *untranslated_label;
|
||||
gint volume;
|
||||
|
||||
if (!labels)
|
||||
fill_labels ();
|
||||
if ((guint) track_num < G_N_ELEMENTS (labels))
|
||||
untranslated_label = labels[track_num];
|
||||
else
|
||||
untranslated_label = NULL;
|
||||
|
||||
/* FIXME: remove this check once we depend on -base >= 0.10.12.1 */
|
||||
klass = G_OBJECT_CLASS (g_type_class_ref (GST_TYPE_SUNAUDIO_MIXER_TRACK));
|
||||
if (g_object_class_find_property (klass, "untranslated-label")) {
|
||||
sunaudiotrack = g_object_new (GST_TYPE_SUNAUDIO_MIXER_TRACK,
|
||||
"untranslated-label", untranslated_label, NULL);
|
||||
} else {
|
||||
sunaudiotrack = g_object_new (GST_TYPE_SUNAUDIO_MIXER_TRACK, NULL);
|
||||
}
|
||||
g_type_class_unref (klass);
|
||||
|
||||
sunaudiotrack = g_object_new (GST_TYPE_SUNAUDIO_MIXER_TRACK, NULL);
|
||||
track = GST_MIXER_TRACK (sunaudiotrack);
|
||||
track->label = g_strdup (labels[track_num]);
|
||||
track->label = g_strdup (_(untranslated_label));
|
||||
track->num_channels = max_chans;
|
||||
track->flags = flags;
|
||||
track->min_volume = 0;
|
||||
|
|
|
@ -26,6 +26,12 @@ else
|
|||
check_annodex =
|
||||
endif
|
||||
|
||||
if USE_SUNAUDIO
|
||||
check_sunaudio = elements/sunaudio
|
||||
else
|
||||
check_sunaudio =
|
||||
endif
|
||||
|
||||
if USE_TAGLIB
|
||||
check_taglib = \
|
||||
elements/id3v2mux \
|
||||
|
@ -47,6 +53,7 @@ check_PROGRAMS = \
|
|||
elements/matroskamux \
|
||||
elements/icydemux \
|
||||
elements/videofilter \
|
||||
$(check_sunaudio) \
|
||||
$(check_taglib)
|
||||
|
||||
VALGRIND_TO_FIX =
|
||||
|
@ -76,3 +83,10 @@ elements_audiopanorama_CFLAGS = \
|
|||
|
||||
elements_cmmldec_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS)
|
||||
elements_cmmlenc_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS)
|
||||
|
||||
elements_sunaudio_CFLAGS = \
|
||||
$(GST_PLUGINS_BASE_CFLAGS) \
|
||||
$(AM_CFLAGS)
|
||||
elements_sunaudio_LDADD = \
|
||||
$(GST_PLUGINS_BASE_LIBS) -lgstinterfaces-@GST_MAJORMINOR@ \
|
||||
$(LDADD)
|
||||
|
|
2
tests/check/elements/.gitignore
vendored
2
tests/check/elements/.gitignore
vendored
|
@ -13,5 +13,5 @@ id3v2mux
|
|||
apev2mux
|
||||
audiopanorama
|
||||
videofilter
|
||||
|
||||
sunaudio
|
||||
autodetect
|
||||
|
|
95
tests/check/elements/sunaudio.c
Normal file
95
tests/check/elements/sunaudio.c
Normal file
|
@ -0,0 +1,95 @@
|
|||
/* GStreamer unit tests for the sun audio elements
|
||||
*
|
||||
* Copyright (C) 2007 Tim-Philipp Müller <tim centricular net>
|
||||
*
|
||||
* 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., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <gst/check/gstcheck.h>
|
||||
#include <gst/interfaces/propertyprobe.h>
|
||||
#include <gst/interfaces/mixer.h>
|
||||
#include <gst/gst.h>
|
||||
|
||||
GST_START_TEST (test_sun_audio_mixer_track)
|
||||
{
|
||||
GstStateChangeReturn state_ret;
|
||||
GstElement *mixer;
|
||||
GList *tracks, *l;
|
||||
|
||||
mixer = gst_element_factory_make ("sunaudiomixer", "sunaudiomixer");
|
||||
fail_unless (mixer != NULL, "Failed to create 'sunaudiomixer' element!");
|
||||
|
||||
state_ret = gst_element_set_state (mixer, GST_STATE_READY);
|
||||
if (state_ret != GST_STATE_CHANGE_SUCCESS) {
|
||||
gst_object_unref (mixer);
|
||||
return;
|
||||
}
|
||||
|
||||
GST_LOG ("opened sunaudiomixer");
|
||||
fail_unless (GST_IS_MIXER (mixer), "is not a GstMixer?!");
|
||||
|
||||
tracks = (GList *) gst_mixer_list_tracks (GST_MIXER (mixer));
|
||||
for (l = tracks; l != NULL; l = l->next) {
|
||||
GObjectClass *klass;
|
||||
GstMixerTrack *track;
|
||||
gchar *ulabel = NULL, *label = NULL;
|
||||
|
||||
track = GST_MIXER_TRACK (l->data);
|
||||
|
||||
g_object_get (track, "label", &label, NULL);
|
||||
fail_unless (label == NULL || g_utf8_validate (label, -1, NULL));
|
||||
|
||||
/* FIXME: remove this check once we depend on -base >= 0.10.12.1 */
|
||||
klass = G_OBJECT_GET_CLASS (track);
|
||||
if (g_object_class_find_property (klass, "untranslated-label")) {
|
||||
g_object_get (track, "untranslated-label", &ulabel, NULL);
|
||||
}
|
||||
|
||||
if (ulabel != NULL) {
|
||||
gchar *p;
|
||||
|
||||
for (p = ulabel; p != NULL && *p != '\0'; ++p) {
|
||||
fail_unless (g_ascii_isprint (*p),
|
||||
"untranslated label '%s' not printable ASCII", ulabel);
|
||||
}
|
||||
}
|
||||
GST_DEBUG ("%s: %s", GST_STR_NULL (ulabel), GST_STR_NULL (label));
|
||||
g_free (label);
|
||||
g_free (ulabel);
|
||||
}
|
||||
|
||||
fail_unless_equals_int (gst_element_set_state (mixer, GST_STATE_NULL),
|
||||
GST_STATE_CHANGE_SUCCESS);
|
||||
|
||||
gst_object_unref (mixer);
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
||||
|
||||
static Suite *
|
||||
sunaudio_suite (void)
|
||||
{
|
||||
Suite *s = suite_create ("sunaudio");
|
||||
TCase *tc_chain = tcase_create ("general");
|
||||
|
||||
suite_add_tcase (s, tc_chain);
|
||||
tcase_add_test (tc_chain, test_sun_audio_mixer_track);
|
||||
|
||||
return s;
|
||||
}
|
||||
|
||||
GST_CHECK_MAIN (sunaudio)
|
Loading…
Reference in a new issue