]> git.sesse.net Git - vlc/commitdiff
Added float 32/64 (non native) support to aout_BitsPerSample.
authorLaurent Aimar <fenrir@videolan.org>
Sat, 6 Feb 2010 14:38:53 +0000 (15:38 +0100)
committerLaurent Aimar <fenrir@videolan.org>
Sat, 6 Feb 2010 15:07:49 +0000 (16:07 +0100)
src/audio_output/common.c

index cd0bf82ae798da43fbe38918e6aa19a384b9db87..34650f2b5e666172464b1748dff89139d02acec6 100644 (file)
@@ -220,11 +220,13 @@ unsigned int aout_BitsPerSample( vlc_fourcc_t i_format )
 
     case VLC_CODEC_S32L:
     case VLC_CODEC_S32B:
-    case VLC_CODEC_FL32:
+    case VLC_CODEC_F32L:
+    case VLC_CODEC_F32B:
     case VLC_CODEC_FI32:
         return 32;
 
-    case VLC_CODEC_FL64:
+    case VLC_CODEC_F64L:
+    case VLC_CODEC_F64B:
         return 64;
 
     default: