summaryrefslogtreecommitdiffstats
path: root/third_party/rust/cubeb-sys/src/format.rs
blob: f9ae7d520b4cb9af1a349543a437c5fff0270540 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright © 2017-2018 Mozilla Foundation
//
// This program is made available under an ISC-style license.  See the
// accompanying file LICENSE for details.

cubeb_enum! {
    pub enum cubeb_sample_format {
        CUBEB_SAMPLE_S16LE,
        CUBEB_SAMPLE_S16BE,
        CUBEB_SAMPLE_FLOAT32LE,
        CUBEB_SAMPLE_FLOAT32BE,
    }
}

#[cfg(target_endian = "big")]
pub const CUBEB_SAMPLE_S16NE: cubeb_sample_format = CUBEB_SAMPLE_S16BE;
#[cfg(target_endian = "big")]
pub const CUBEB_SAMPLE_FLOAT32NE: cubeb_sample_format = CUBEB_SAMPLE_FLOAT32BE;
#[cfg(target_endian = "little")]
pub const CUBEB_SAMPLE_S16NE: cubeb_sample_format = CUBEB_SAMPLE_S16LE;
#[cfg(target_endian = "little")]
pub const CUBEB_SAMPLE_FLOAT32NE: cubeb_sample_format = CUBEB_SAMPLE_FLOAT32LE;