mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 00:58:12 +00:00
openmpt: Namespace enum GType names
This commit is contained in:
parent
43e9f0af42
commit
e8ffa0d39c
2 changed files with 5 additions and 4 deletions
|
@ -211798,7 +211798,7 @@
|
||||||
"default": "steady (1)",
|
"default": "steady (1)",
|
||||||
"mutable": "null",
|
"mutable": "null",
|
||||||
"readable": true,
|
"readable": true,
|
||||||
"type": "NonstreamAudioOutputMode",
|
"type": "GstNonstreamAudioOutputMode",
|
||||||
"writable": true
|
"writable": true
|
||||||
},
|
},
|
||||||
"stereo-separation": {
|
"stereo-separation": {
|
||||||
|
|
|
@ -298,7 +298,8 @@ gst_nonstream_audio_decoder_output_mode_get_type (void)
|
||||||
};
|
};
|
||||||
|
|
||||||
gst_nonstream_audio_decoder_output_mode_type =
|
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;
|
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 =
|
gst_nonstream_audio_decoder_subsong_mode_type =
|
||||||
g_enum_register_static ("NonstreamAudioSubsongMode",
|
g_enum_register_static ("GstNonstreamAudioSubsongMode",
|
||||||
subsong_mode_values);
|
subsong_mode_values);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue