AudioMange_Param.h
1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
********************************************************************
* @file AudioFile_Param.h
* AudioFile_Param的头文件
*
*********************************************************************
*/
/* Define to prevent recursive inclusion 避免重定义 -------------------------------------*/
#ifndef AUDIOFILE_PARAM_H
#define AUDIOFILE_PARAM_H
/* Includes ------------------------------------------------------------------*/
#ifdef __cplusplus
extern "C" {
#endif
/* Exported constants --------------------------------------------------------*/
/* 常亮定义*/
#include "JZsdkLib.h"
/* Exported types ------------------------------------------------------------*/
/* Exported functions --------------------------------------------------------*/
//音频信息结构体
struct AudioMange_audio_struct
{
unsigned char FileName[JZSDK_FILE_NAME_SIZE_MAX+1]; //音频名字
unsigned int FileNameLen; //音频名字长度
unsigned int FileType; //音频的文件类型
unsigned int FileSize; //文件大小
unsigned int BitRate; //音频波特率
unsigned int Time; //音频的总时长
unsigned int PlayTime; //音频当前的播放时间
}AudioMange_audio_struct;
#ifdef __cplusplus
}
#endif
#endif