mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
playsink: Fix filter property getter
The switch-case set was incomplete. https://bugzilla.gnome.org/show_bug.cgi?id=733012
This commit is contained in:
parent
0c171fbef3
commit
40699e020a
1 changed files with 2 additions and 0 deletions
|
@ -973,6 +973,7 @@ gst_play_sink_get_filter (GstPlaySink * playsink, GstPlaySinkType type)
|
|||
|
||||
GST_PLAY_SINK_LOCK (playsink);
|
||||
switch (type) {
|
||||
case GST_PLAY_SINK_TYPE_AUDIO:
|
||||
case GST_PLAY_SINK_TYPE_AUDIO_RAW:
|
||||
{
|
||||
GstPlayAudioChain *chain;
|
||||
|
@ -981,6 +982,7 @@ gst_play_sink_get_filter (GstPlaySink * playsink, GstPlaySinkType type)
|
|||
elem = playsink->audio_filter;
|
||||
break;
|
||||
}
|
||||
case GST_PLAY_SINK_TYPE_VIDEO:
|
||||
case GST_PLAY_SINK_TYPE_VIDEO_RAW:
|
||||
{
|
||||
GstPlayVideoChain *chain;
|
||||
|
|
Loading…
Reference in a new issue