mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
gst/playback/gstplaybin.c: Use autoaudiosink, it tends to be more widely available than autoaudiiosink.
Original commit message from CVS: * gst/playback/gstplaybin.c: (gen_audio_element): Use autoaudiosink, it tends to be more widely available than autoaudiiosink.
This commit is contained in:
parent
65480fcc2d
commit
726770239d
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2005-11-14 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* gst/playback/gstplaybin.c: (gen_audio_element):
|
||||||
|
Use autoaudiosink, it tends to be more widely available than
|
||||||
|
autoaudiiosink.
|
||||||
|
|
||||||
2005-11-14 Andy Wingo <wingo@pobox.com>
|
2005-11-14 Andy Wingo <wingo@pobox.com>
|
||||||
|
|
||||||
* gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
|
* gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
|
||||||
|
|
|
@ -532,7 +532,7 @@ gen_audio_element (GstPlayBin * play_bin)
|
||||||
if (play_bin->audio_sink) {
|
if (play_bin->audio_sink) {
|
||||||
sink = play_bin->audio_sink;
|
sink = play_bin->audio_sink;
|
||||||
} else {
|
} else {
|
||||||
sink = gst_element_factory_make ("autoaudiiosink", "audiosink");
|
sink = gst_element_factory_make ("autoaudiosink", "audiosink");
|
||||||
if (sink == NULL) {
|
if (sink == NULL) {
|
||||||
sink = gst_element_factory_make ("alsasink", "audiosink");
|
sink = gst_element_factory_make ("alsasink", "audiosink");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue