summaryrefslogtreecommitdiff
path: root/apps/codecs/libasf/asf.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libasf/asf.h')
-rw-r--r--apps/codecs/libasf/asf.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/codecs/libasf/asf.h b/apps/codecs/libasf/asf.h
index c15bf4edec..9592618997 100644
--- a/apps/codecs/libasf/asf.h
+++ b/apps/codecs/libasf/asf.h
@@ -32,7 +32,8 @@ struct asf_waveformatex_s {
32 uint16_t blockalign; 32 uint16_t blockalign;
33 uint16_t bitspersample; 33 uint16_t bitspersample;
34 uint16_t datalen; 34 uint16_t datalen;
35 uint8_t data[6]; 35 uint16_t numpackets;
36 uint8_t data[18];
36}; 37};
37typedef struct asf_waveformatex_s asf_waveformatex_t; 38typedef struct asf_waveformatex_s asf_waveformatex_t;
38 39
@@ -41,5 +42,7 @@ int asf_read_packet(uint8_t** audiobuf, int* audiobufsize, int* packetlength,
41 42
42int asf_get_timestamp(int *duration); 43int asf_get_timestamp(int *duration);
43 44
45int seek(int ms, asf_waveformatex_t* wfx);
46
44 47
45#endif /* _ASF_H */ 48#endif /* _ASF_H */