]> code.delx.au - pulseaudio/blobdiff - src/modules/bluetooth/ipc.h
bluetooth: Pull a2dp-codecs.h from BlueZ
[pulseaudio] / src / modules / bluetooth / ipc.h
index 4547168bb0a49256d51dbfaee95a098740feeea0..d69b97e494fad2705a30faf24e0d9f882ec99e25 100644 (file)
@@ -202,34 +202,6 @@ typedef struct {
        uint8_t max_bitpool;
 } __attribute__ ((packed)) sbc_capabilities_t;
 
-#if __BYTE_ORDER == __LITTLE_ENDIAN
-
-typedef struct {
-       uint8_t channel_mode:4;
-       uint8_t frequency:4;
-       uint8_t allocation_method:2;
-       uint8_t subbands:2;
-       uint8_t block_length:4;
-       uint8_t min_bitpool;
-       uint8_t max_bitpool;
-} __attribute__ ((packed)) sbc_capabilities_raw_t;
-
-#elif __BYTE_ORDER == __BIG_ENDIAN
-
-typedef struct {
-       uint8_t frequency:4;
-       uint8_t channel_mode:4;
-       uint8_t block_length:4;
-       uint8_t subbands:2;
-       uint8_t allocation_method:2;
-       uint8_t min_bitpool;
-       uint8_t max_bitpool;
-} __attribute__ ((packed)) sbc_capabilities_raw_t;
-
-#else
-#error "Unknown byte order"
-#endif
-
 typedef struct {
        codec_capabilities_t capability;
        uint8_t channel_mode;