[vlc-commits] mux: avi: add A-law (fix #16808)
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:09:32 2016 -0400| [88df2cfd51b0ee2faa5ce7a4beab9aec8de6d3ae] | committer: Tristan Matthews
mux: avi: add A-law (fix #16808)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=88df2cfd51b0ee2faa5ce7a4beab9aec8de6d3ae
---
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;
More information about the vlc-commits
mailing list