mirror of
https://github.com/switchbrew/libnx.git
synced 2025-12-29 14:29:11 +01:00
20 lines
344 B
C
20 lines
344 B
C
/**
|
|
* @file audio.h
|
|
* @brief Global audio service.
|
|
* @author hexkyz
|
|
* @copyright libnx Authors
|
|
*/
|
|
#pragma once
|
|
|
|
#include "../types.h"
|
|
|
|
typedef enum {
|
|
PcmFormat_Invalid = 0,
|
|
PcmFormat_INT8 = 1,
|
|
PcmFormat_INT16 = 2,
|
|
PcmFormat_INT24 = 3,
|
|
PcmFormat_INT32 = 4,
|
|
PcmFormat_FLOAT = 5,
|
|
PcmFormat_ADPCM = 6,
|
|
} PcmFormat;
|