Remove pa_bool_t and replace it with bool
[platform/upstream/pulseaudio.git] / src / modules / bluetooth / module-bluez5-device.c
index 332b21a..809607b 100644 (file)
@@ -101,7 +101,7 @@ typedef struct sbc_info {
     uint8_t min_bitpool;
     uint8_t max_bitpool;
 #ifdef BLUETOOTH_APTX_SUPPORT
-    pa_bool_t aptx_initialized;          /* Keep track if the encoder is initialized */
+    bool aptx_initialized;               /* Keep track if the encoder is initialized */
     void *aptx;                          /* aptx Codec data */
 #endif
     void* buffer;                        /* Codec transfer buffer */
@@ -248,7 +248,7 @@ int (*aptx_encode)(void* _state, void* _pcmL, void* _pcmR, void* _buffer);
 const char *aptx_new_name = "NewAptxEnc";
 const char *aptx_encode_name = "aptxbtenc_encodestereo";
 
-static pa_bool_t pa_load_aptx_sym(void *handle )
+static bool pa_load_aptx_sym(void *handle )
 {
        if (!handle)
                return false;