Add support for selecting the sndio backends in the VV config plugin.
Fixes #14414.
committer: Elliott Sales de Andrade <qulogic@pidgin.im>
1.1 --- a/ChangeLog
1.2 +++ b/ChangeLog
1.3 @@ -106,6 +106,10 @@
1.4 * The autoaccept plugin will no longer reset the preference for unknown
1.5 buddies to "Auto Reject" in certain cases. (#14964)
1.6
1.7 + Plugins:
1.8 + * The Voice/Video Settings plugin supports using the sndio GStreamer
1.9 + backends. (Brad Smith) (#14414)
1.10 +
1.11 version 2.10.1 (12/06/2011):
1.12 Finch:
1.13 * Fix compilation on OpenBSD.
2.1 --- a/pidgin/plugins/vvconfig.c
2.2 +++ b/pidgin/plugins/vvconfig.c
2.3 @@ -39,6 +39,7 @@
2.4 /* "esdmon", "ESD", ? */
2.5 "osssrc", "OSS",
2.6 "pulsesrc", "PulseAudio",
2.7 + "libsndiosrc", "sndio",
2.8 /* "audiotestsrc wave=silence", "Silence", */
2.9 "audiotestsrc", "Test Sound",
2.10 NULL
2.11 @@ -50,6 +51,7 @@
2.12 "esdsink", "ESD",
2.13 "osssink", "OSS",
2.14 "pulsesink", "PulseAudio",
2.15 + "libsndiosink", "sndio",
2.16 NULL
2.17 };
2.18