wok view libmms/stuff/libmms.patch @ rev 20235

busybox: add arch (uname -m alias)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 05 15:52:59 2018 +0100 (2018-03-05)
parents
children
line source
1 --- a/src/mmsx.h
2 +++ b/src/mmsx.h
3 @@ -55,11 +55,11 @@
5 mms_off_t mmsx_get_current_pos (mmsx_t *instance);
7 -uint32_t mmsx_get_asf_header_len (mmsx_t *this);
8 +uint32_t mmsx_get_asf_header_len (mmsx_t *instance);
10 -uint64_t mmsx_get_asf_packet_len (mmsx_t *this);
11 +uint64_t mmsx_get_asf_packet_len (mmsx_t *instance);
13 -int mmsx_get_seekable (mmsx_t *this);
14 +int mmsx_get_seekable (mmsx_t *instance);
16 #ifdef __cplusplus
17 }
19 --- a/src/mmsh.h
20 +++ b/src/mmsh.h
21 @@ -41,20 +41,20 @@
23 int mmsh_read (mms_io_t *io, mmsh_t *instance, char *data, int len);
24 int mmsh_time_seek (mms_io_t *io, mmsh_t *instance, double time_sec);
25 -mms_off_t mmsh_seek (mms_io_t *io, mmsh_t *this, mms_off_t offset, int origin);
26 +mms_off_t mmsh_seek (mms_io_t *io, mmsh_t *instance, mms_off_t offset, int origin);
27 uint32_t mmsh_get_length (mmsh_t *instance);
28 -double mmsh_get_time_length (mmsh_t *this);
29 -uint64_t mmsh_get_raw_time_length (mmsh_t *this);
30 +double mmsh_get_time_length (mmsh_t *instance);
31 +uint64_t mmsh_get_raw_time_length (mmsh_t *instance);
32 mms_off_t mmsh_get_current_pos (mmsh_t *instance);
33 void mmsh_close (mmsh_t *instance);
35 int mmsh_peek_header (mmsh_t *instance, char *data, int maxsize);
37 -uint32_t mmsh_get_asf_header_len (mmsh_t *this);
38 +uint32_t mmsh_get_asf_header_len (mmsh_t *instance);
40 -uint32_t mmsh_get_asf_packet_len (mmsh_t *this);
41 +uint32_t mmsh_get_asf_packet_len (mmsh_t *instance);
43 -int mmsh_get_seekable (mmsh_t *this);
44 +int mmsh_get_seekable (mmsh_t *instance);
46 #ifdef __cplusplus
47 }