summaryrefslogtreecommitdiff
blob: 7d20b0820792db0a342ba9744f362aaa1ff95820 (plain)
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
46
47
48
diff -ur libmms-0.4.orig/src/mms.h libmms-0.4/src/mms.h
--- libmms-0.4.orig/src/mms.h	2007-12-11 22:24:48.000000000 +0200
+++ libmms-0.4/src/mms.h	2008-12-12 15:48:46.000000000 +0200
@@ -76,11 +76,11 @@
 
 mms_off_t mms_get_current_pos (mms_t *instance);
 
-uint32_t mms_get_asf_header_len (mms_t *this);
+uint32_t mms_get_asf_header_len (mms_t *instance);
 
-uint64_t mms_get_asf_packet_len (mms_t *this);
+uint64_t mms_get_asf_packet_len (mms_t *instance);
 
-int      mms_get_seekable (mms_t *this);
+int      mms_get_seekable (mms_t *instance);
 
 #ifdef __cplusplus
 }
diff -ur libmms-0.4.orig/src/mmsh.h libmms-0.4/src/mmsh.h
--- libmms-0.4.orig/src/mmsh.h	2007-12-11 22:24:48.000000000 +0200
+++ libmms-0.4/src/mmsh.h	2008-12-12 15:48:46.000000000 +0200
@@ -41,20 +41,20 @@
 
 int      mmsh_read (mms_io_t *io, mmsh_t *instance, char *data, int len);
 int      mmsh_time_seek (mms_io_t *io, mmsh_t *instance, double time_sec);
-mms_off_t mmsh_seek (mms_io_t *io, mmsh_t *this, mms_off_t offset, int origin);
+mms_off_t mmsh_seek (mms_io_t *io, mmsh_t *instance, mms_off_t offset, int origin);
 uint32_t mmsh_get_length (mmsh_t *instance);
-double   mmsh_get_time_length (mmsh_t *this);
-uint64_t mmsh_get_raw_time_length (mmsh_t *this);
+double   mmsh_get_time_length (mmsh_t *instance);
+uint64_t mmsh_get_raw_time_length (mmsh_t *instance);
 mms_off_t mmsh_get_current_pos (mmsh_t *instance);
 void     mmsh_close (mmsh_t *instance);
 
 int      mmsh_peek_header (mmsh_t *instance, char *data, int maxsize);
 
-uint32_t mmsh_get_asf_header_len (mmsh_t *this);
+uint32_t mmsh_get_asf_header_len (mmsh_t *instance);
 
-uint32_t mmsh_get_asf_packet_len (mmsh_t *this);
+uint32_t mmsh_get_asf_packet_len (mmsh_t *instance);
 
-int      mmsh_get_seekable (mmsh_t *this);
+int      mmsh_get_seekable (mmsh_t *instance);
 
 #ifdef __cplusplus
 }