Commit 2c3a9415 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

aout: drop FI32 from outputs

parent a6838919
...@@ -195,10 +195,6 @@ static int Open (vlc_object_t *obj) ...@@ -195,10 +195,6 @@ static int Open (vlc_object_t *obj)
case VLC_CODEC_F32L: case VLC_CODEC_F32L:
pcm_format = SND_PCM_FORMAT_FLOAT_LE; pcm_format = SND_PCM_FORMAT_FLOAT_LE;
break; break;
case VLC_CODEC_FI32:
fourcc = VLC_CODEC_FL32;
pcm_format = SND_PCM_FORMAT_FLOAT;
break;
case VLC_CODEC_S32B: case VLC_CODEC_S32B:
pcm_format = SND_PCM_FORMAT_S32_BE; pcm_format = SND_PCM_FORMAT_S32_BE;
break; break;
......
...@@ -88,7 +88,7 @@ static void Play ( audio_output_t *, block_t * ); ...@@ -88,7 +88,7 @@ static void Play ( audio_output_t *, block_t * );
"header to the file.") "header to the file.")
static const char *const format_list[] = { "u8", "s8", "u16", "s16", "u16_le", static const char *const format_list[] = { "u8", "s8", "u16", "s16", "u16_le",
"s16_le", "u16_be", "s16_be", "fixed32", "s16_le", "u16_be", "s16_be",
"float32", "spdif" }; "float32", "spdif" };
static const int format_int[] = { VLC_CODEC_U8, static const int format_int[] = { VLC_CODEC_U8,
VLC_CODEC_S8, VLC_CODEC_S8,
...@@ -97,7 +97,6 @@ static const int format_int[] = { VLC_CODEC_U8, ...@@ -97,7 +97,6 @@ static const int format_int[] = { VLC_CODEC_U8,
VLC_CODEC_S16L, VLC_CODEC_S16L,
VLC_CODEC_U16B, VLC_CODEC_U16B,
VLC_CODEC_S16B, VLC_CODEC_S16B,
VLC_CODEC_FI32,
VLC_CODEC_FL32, VLC_CODEC_FL32,
VLC_CODEC_SPDIFL }; VLC_CODEC_SPDIFL };
......
...@@ -705,10 +705,6 @@ static int Open(vlc_object_t *obj) ...@@ -705,10 +705,6 @@ static int Open(vlc_object_t *obj)
case VLC_CODEC_F32L: case VLC_CODEC_F32L:
ss.format = PA_SAMPLE_FLOAT32LE; ss.format = PA_SAMPLE_FLOAT32LE;
break; break;
case VLC_CODEC_FI32:
format = VLC_CODEC_FL32;
ss.format = PA_SAMPLE_FLOAT32NE;
break;
case VLC_CODEC_S32B: case VLC_CODEC_S32B:
ss.format = PA_SAMPLE_S32BE; ss.format = PA_SAMPLE_S32BE;
break; break;
......
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