[vlc-commits] pulse: no TRUEHD/MLP support

Thomas Guillem git at videolan.org
Fri Oct 7 12:10:18 CEST 2016


vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Thu Oct  6 18:10:01 2016 +0200| [e400088de4571dae52059701dcf4788490b0e535] | committer: Thomas Guillem

pulse: no TRUEHD/MLP support

Sending this codec via passthrough is not supported in pulseaudio (yet).

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e400088de4571dae52059701dcf4788490b0e535
---

 modules/audio_output/pulse.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/modules/audio_output/pulse.c b/modules/audio_output/pulse.c
index 18cc0de..d5ab7ab 100644
--- a/modules/audio_output/pulse.c
+++ b/modules/audio_output/pulse.c
@@ -744,6 +744,9 @@ static int Start(audio_output_t *aout, audio_sample_format_t *restrict fmt)
             ss.format = PA_SAMPLE_S16NE;
 
             break;
+        case VLC_CODEC_TRUEHD:
+        case VLC_CODEC_MLP:
+            return VLC_EGENERIC;
         default:
             if (HAVE_FPU)
             {



More information about the vlc-commits mailing list