[vlc-devel] [PATCH 1/2] mux: avi: add A-law (fix #16808)
Tristan Matthews
tmatth at videolan.org
Fri Apr 15 17:17:34 CEST 2016
---
modules/mux/avi.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/modules/mux/avi.c b/modules/mux/avi.c
index d55e665..882d53d 100644
--- a/modules/mux/avi.c
+++ b/modules/mux/avi.c
@@ -368,6 +368,9 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
case VLC_CODEC_WMAL:
p_wf->wFormatTag = WAVE_FORMAT_WMAL;
break;
+ case VLC_CODEC_ALAW:
+ p_wf->wFormatTag = WAVE_FORMAT_ALAW;
+ break;
/* raw codec */
case VLC_CODEC_U8:
p_wf->wFormatTag = WAVE_FORMAT_PCM;
--
2.8.0.rc3
More information about the vlc-devel
mailing list