]> git.sesse.net Git - vlc/commitdiff
Ouuups, forgot to uncomment some code I had commented for testing purposes
authorBenjamin Pracht <bigben@videolan.org>
Wed, 2 Nov 2005 21:35:16 +0000 (21:35 +0000)
committerBenjamin Pracht <bigben@videolan.org>
Wed, 2 Nov 2005 21:35:16 +0000 (21:35 +0000)
modules/audio_output/alsa.c

index 7509bb5bd664137263166e7e60bac916cf37a34a..20d31ab3111ad7f8204823517c8b9fdf8b404b72 100644 (file)
@@ -355,11 +355,11 @@ static int Open( vlc_object_t *p_this )
     /* Choose the linear PCM format (read the comment above about FPU
        and float32) */
     if( p_aout->p_libvlc->i_cpu & CPU_CAPABILITY_FPU )
-   /* {
+    {
         i_vlc_pcm_format = VLC_FOURCC('f','l','3','2');
         i_snd_pcm_format = SND_PCM_FORMAT_FLOAT;
     }
-    else */
+    else
     {
         i_vlc_pcm_format = AOUT_FMT_S16_NE;
         i_snd_pcm_format = SND_PCM_FORMAT_S16;