hi_audio_stream
说明
定义音频码流结构体。
定义
typedef struct {
    hi_u8 ATTRIBUTE *stream;    /* the virtual address of stream */
    hi_u64 ATTRIBUTE phys_addr;  /* the physical address of stream */
    hi_u32 len;                 /* stream length, by bytes */
    hi_u64 time_stamp;          /* frame time stamp */
    hi_u32 seq;                 /* frame seq, if stream is not a valid frame,seq is 0 */
} hi_audio_stream;
成员
成员名称  | 
描述  | 
|---|---|
stream  | 
音频码流数据指针。  | 
phys_addr  | 
音频码流的物理地址。  | 
len  | 
音频码流长度(单位:byte)。 
  | 
time_stamp  | 
音频码流时间戳。  | 
seq  | 
音频码流序号,如果stream无效,seq为0。  | 
父主题: 音频相关