[vlc-devel] [PATCH 2/2] mux: avi: add μ-law

Tristan Matthews tmatth at videolan.org
Fri Apr 15 17:17:35 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 882d53d..86e91c4 100644
--- a/modules/mux/avi.c
+++ b/modules/mux/avi.c
@@ -371,6 +371,9 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
                 case VLC_CODEC_ALAW:
                     p_wf->wFormatTag = WAVE_FORMAT_ALAW;
                     break;
+                case VLC_CODEC_MULAW:
+                    p_wf->wFormatTag = WAVE_FORMAT_MULAW;
+                    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