pulse: fix formats, we can not handle S8 but only U8

This commit is contained in:
Wim Taymans 2012-03-13 13:25:09 +01:00
parent 89105970f0
commit ed59c841a4

View file

@ -92,10 +92,10 @@ GType gst_pulsesink_get_type (void);
#if (G_BYTE_ORDER == G_LITTLE_ENDIAN)
# define FORMATS "{ S16LE, S16BE, F32LE, F32BE, S32LE, S32BE, " \
"S24LE, S24BE, S24_32LE, S24_32BE, S8 }"
"S24LE, S24BE, S24_32LE, S24_32BE, U8 }"
#else
# define FORMATS "{ S16BE, S16LE, F32BE, F32LE, S32BE, S32LE, " \
"S24BE, S24LE, S24_32BE, S24_32LE, S8 }"
"S24BE, S24LE, S24_32BE, S24_32LE, U8 }"
#endif
#define _PULSE_SINK_CAPS_COMMON \