summaryrefslogtreecommitdiff
path: root/gst-libs
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@igalia.com>2020-06-23 11:36:15 -0400
committerThibault Saunier <tsaunier@igalia.com>2020-06-23 13:02:57 -0400
commite8ffa0d39c52ff9760e90541aa8bb4f431231542 (patch)
treeb199e8debad75a532fbeff4cd9ee2c4821788acb /gst-libs
parent43e9f0af422d50f7e6ddf6a68abacbcf7be04d67 (diff)
downloadgstreamer-plugins-bad-e8ffa0d39c52ff9760e90541aa8bb4f431231542.tar.gz
openmpt: Namespace enum GType names
Diffstat (limited to 'gst-libs')
-rw-r--r--gst-libs/gst/audio/gstnonstreamaudiodecoder.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gst-libs/gst/audio/gstnonstreamaudiodecoder.c b/gst-libs/gst/audio/gstnonstreamaudiodecoder.c
index 8a63a1c1a..ca8afce6a 100644
--- a/gst-libs/gst/audio/gstnonstreamaudiodecoder.c
+++ b/gst-libs/gst/audio/gstnonstreamaudiodecoder.c
@@ -148,7 +148,7 @@
* * The duration that is returned to a DURATION query is always the duration
* of the (sub)song, regardless of number of loops or output mode. The same
* goes for DURATION messages and tags.
- *
+ *
* * If the number of loops is >0 or -1, durations of TOC entries are set to
* the duration of the respective subsong in LOOPING mode and to G_MAXINT64 in
* STEADY mode. If the number of loops is 0, entry durations are set to the
@@ -298,7 +298,8 @@ gst_nonstream_audio_decoder_output_mode_get_type (void)
};
gst_nonstream_audio_decoder_output_mode_type =
- g_enum_register_static ("NonstreamAudioOutputMode", output_mode_values);
+ g_enum_register_static ("GstNonstreamAudioOutputMode",
+ output_mode_values);
}
return gst_nonstream_audio_decoder_output_mode_type;
@@ -321,7 +322,7 @@ gst_nonstream_audio_decoder_subsong_mode_get_type (void)
};
gst_nonstream_audio_decoder_subsong_mode_type =
- g_enum_register_static ("NonstreamAudioSubsongMode",
+ g_enum_register_static ("GstNonstreamAudioSubsongMode",
subsong_mode_values);
}