[vlc-commits] mux: avi: add μ-law
Tristan Matthews
git at videolan.org
Fri Apr 15 18:19:11 CEST 2016
vlc | branch: master | Tristan Matthews <tmatth at videolan.org> | Fri Apr 15 11:14:11 2016 -0400| [06adc3908aaea572f9f3eb145a297dafb52dd67e] | committer: Tristan Matthews
mux: avi: add μ-law
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=06adc3908aaea572f9f3eb145a297dafb52dd67e
---
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;
More information about the vlc-commits
mailing list