docs: Rename "OS X" to "macOS" in some documentation

No one uses the term "Mac OS X" anymore, it's "macOS". "OS X" is even
worse, because people will usually start the search with "mac".

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1607>
This commit is contained in:
Nirbheek Chauhan 2022-01-30 19:06:29 +05:30
parent bc5cbc86d8
commit f1449ac116
5 changed files with 9 additions and 9 deletions

View file

@ -102,5 +102,5 @@ plugin_init (GstPlugin * plugin)
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
GST_VERSION_MINOR, GST_VERSION_MINOR,
applemedia, applemedia,
"Elements for capture and codec access on Apple OS X and iOS", "Elements for capture and codec access on Apple macOS and iOS",
plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN) plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)

View file

@ -366,7 +366,7 @@ gst_vtenc_class_init (GstVTEncClass * klass)
* vtenc_prores:preserve-alpha * vtenc_prores:preserve-alpha
* *
* Preserve non-opaque video alpha values from the input video when * Preserve non-opaque video alpha values from the input video when
* compressing, else treat all alpha component as opaque. Default is %TRUE. * compressing, else treat all alpha component as opaque.
* *
* Since: 1.20 * Since: 1.20
*/ */

View file

@ -191,9 +191,9 @@ gst_osx_audio_sink_class_init (GstOsxAudioSinkClass * klass)
gst_element_class_add_static_pad_template (gstelement_class, &sink_factory); gst_element_class_add_static_pad_template (gstelement_class, &sink_factory);
gst_element_class_set_static_metadata (gstelement_class, "Audio Sink (OSX)", gst_element_class_set_static_metadata (gstelement_class, "Audio Sink (macOS)",
"Sink/Audio", "Sink/Audio",
"Output to a sound card in OS X", "Output to a sound card on macOS",
"Zaheer Abbas Merali <zaheerabbas at merali dot org>"); "Zaheer Abbas Merali <zaheerabbas at merali dot org>");
} }

View file

@ -154,9 +154,9 @@ gst_osx_audio_src_class_init (GstOsxAudioSrcClass * klass)
gst_element_class_add_static_pad_template (gstelement_class, &src_factory); gst_element_class_add_static_pad_template (gstelement_class, &src_factory);
gst_element_class_set_static_metadata (gstelement_class, "Audio Source (OSX)", gst_element_class_set_static_metadata (gstelement_class,
"Source/Audio", "Audio Source (macOS)", "Source/Audio",
"Input from a sound card in OS X", "Input from a sound card on macOS",
"Zaheer Abbas Merali <zaheerabbas at merali dot org>"); "Zaheer Abbas Merali <zaheerabbas at merali dot org>");
} }

View file

@ -525,8 +525,8 @@ gst_osx_video_sink_base_init (gpointer g_class)
{ {
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class); GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
gst_element_class_set_static_metadata (element_class, "OSX Video sink", gst_element_class_set_static_metadata (element_class, "macOS Video sink",
"Sink/Video", "OSX native videosink", "Sink/Video", "macOS native videosink",
"Zaheer Abbas Merali <zaheerabbas at merali dot org>"); "Zaheer Abbas Merali <zaheerabbas at merali dot org>");
gst_element_class_add_static_pad_template (element_class, &gst_osx_video_sink_sink_template_factory); gst_element_class_add_static_pad_template (element_class, &gst_osx_video_sink_sink_template_factory);