[vlc-devel] [PATCH 4/9] pulse: add EAC3 support
Thomas Guillem
thomas at gllm.fr
Thu Sep 1 10:54:11 CEST 2016
---
modules/audio_output/pulse.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/audio_output/pulse.c b/modules/audio_output/pulse.c
index fb2f6cb..e0712d2 100644
--- a/modules/audio_output/pulse.c
+++ b/modules/audio_output/pulse.c
@@ -718,12 +718,12 @@ static int Start(audio_output_t *aout, audio_sample_format_t *restrict fmt)
encoding = PA_ENCODING_AC3_IEC61937;
ss.format = HAVE_FPU ? PA_SAMPLE_FLOAT32NE : PA_SAMPLE_S16NE;
break;
- /*case VLC_CODEC_EAC3:
- fmt->i_format = VLC_CODEC_SPDIFL FIXME;
+ case VLC_CODEC_EAC3:
+ fmt->i_format = VLC_CODEC_SPDIFL;
encoding = PA_ENCODING_EAC3_IEC61937;
ss.format = HAVE_FPU ? PA_SAMPLE_FLOAT32NE : PA_SAMPLE_S16NE;
break;
- case VLC_CODEC_MPGA:
+ /* case VLC_CODEC_MPGA:
fmt->i_format = VLC_CODEC_SPDIFL FIXME;
encoding = PA_ENCODING_MPEG_IEC61937;
ss.format = HAVE_FPU ? PA_SAMPLE_FLOAT32NE : PA_SAMPLE_S16NE;
--
2.9.3
More information about the vlc-devel
mailing list