repo.or.cz
/
kugel-rb
/
myfork.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fully fill the table headers with color
[kugel-rb/myfork.git]
/
apps
/
codecs
/
libwma
/
asf.h
blob
8cae8fae1def7a22b6d77861a5a1d8b0767bb93c
1
#ifndef _ASF_H
2
#define _ASF_H
3
4
#include <inttypes.h>
5
6
/* ASF codec IDs */
7
#define ASF_CODEC_ID_WMAV1 0x160
8
#define ASF_CODEC_ID_WMAV2 0x161
9
10
struct
asf_waveformatex_s
{
11
uint32_t
packet_size
;
12
int
audiostream
;
13
uint16_t
codec_id
;
14
uint16_t
channels
;
15
uint32_t
rate
;
16
uint32_t
bitrate
;
17
uint16_t
blockalign
;
18
uint16_t
bitspersample
;
19
uint16_t
datalen
;
20
uint8_t
data
[
6
];
21
};
22
typedef
struct
asf_waveformatex_s asf_waveformatex_t
;
23
24
#endif