Commit 39ce7c4c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

A-law and µ-law are 8-bits too

parent ceed481a
...@@ -239,6 +239,8 @@ unsigned int aout_BitsPerSample( vlc_fourcc_t i_format ) ...@@ -239,6 +239,8 @@ unsigned int aout_BitsPerSample( vlc_fourcc_t i_format )
{ {
case VLC_CODEC_U8: case VLC_CODEC_U8:
case VLC_CODEC_S8: case VLC_CODEC_S8:
case VLC_CODEC_ALAW:
case VLC_CODEC_MULAW:
return 8; return 8;
case VLC_CODEC_U16L: case VLC_CODEC_U16L:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment