?? audio_types.h
字號:
/*
* FILE: audio_types.h
* PROGRAM: RAT
* AUTHOR: Orion Hodson
*
* Copyright (c) 1998-2001 University College London
* All rights reserved.
*
* $Id: audio_types.h,v 1.23 2002/03/15 22:37:58 ucacoxh Exp $
*/
#ifndef _RAT_AUDIO_TYPES_H_
#define _RAT_AUDIO_TYPES_H_
/* This version of the code can only work with a constant device */
/* encoding. To use different encodings the parameters below have */
/* to be changed and the program recompiled. */
/* The clock translation problems have to be taken into consideration */
/* if different users use different base encodings... */
typedef enum {
DEV_PCMU, /* mu-law (8 bits) */
DEV_PCMA, /* a-law (8 bits) */
DEV_S8, /* signed 8 bits */
DEV_U8, /* unsigned 8 bits */
DEV_S16 /* signed 16 bits */
} deve_e;
typedef struct s_audio_format {
deve_e encoding;
uint32_t sample_rate; /* Should be one of 8000, 16000, 24000, 32000, 48000 */
int bits_per_sample; /* Should be 8 or 16 */
int channels; /* Should be 1 or 2 */
int bytes_per_block; /* size of unit we will read/write in */
} audio_format;
typedef int16_t sample; /* Sample representation 16 bit signed */
/* Macro's reserved for future work, ie internal 16bit and 32bit samples */
typedef int16_t sample16_t;
typedef int32_t sample32_t;
#define SAMPLE_MIN(type) (~0 << (8 * sizeof(type) - 1))
#define SAMPLE_MAX(type) (~SAMPLE_MIN(type))
#define SAMPLE_BOUND(value, type) \
(value > SAMPLE_MAX(type)) ? SAMPLE_MAX(type) : \
((value < SAMPLE_MIN(type)) ? SAMPLE_MIN(type) : value)
typedef int audio_desc_t; /* Unique handle for identifying audio devices */
#define AUDIO_DEVICE_NAME_LENGTH 63
typedef struct {
audio_desc_t descriptor;
char *name;
} audio_device_details_t;
typedef uint32_t audio_port_t;
#define AUDIO_PORT_NAME_LENGTH 20
#define AUDIO_PORT_PHONE "Phone"
#define AUDIO_PORT_SPEAKER "Speaker"
#define AUDIO_PORT_HEADPHONE "Headphone"
#define AUDIO_PORT_LINE_OUT "Line-Out"
#define AUDIO_PORT_MICROPHONE "Microphone"
#define AUDIO_PORT_LINE_IN "Line-In"
#define AUDIO_PORT_CD "CD"
typedef struct {
audio_port_t port;
char name[AUDIO_PORT_NAME_LENGTH + 1];
} audio_port_details_t;
#define BYTES_PER_SAMPLE sizeof(sample)
#define PCMU_AUDIO_ZERO 127
#define PCMA_AUDIO_ZERO 213
#define L16_AUDIO_ZERO 0
#define MAX_AMP 100
#define DEVICE_REC_BUF 16000
#define DEVICE_BUF_UNIT 320
#endif /* _RAT_AUDIO_TYPES_H_ */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -