wok annotate libmms/stuff/libmms.patch @ rev 25466

Update some web_site
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 01 09:32:27 2022 +0000 (20 months ago)
parents
children
rev   line source
al@18633 1 --- a/src/mmsx.h
al@18633 2 +++ b/src/mmsx.h
al@18633 3 @@ -55,11 +55,11 @@
al@18633 4
al@18633 5 mms_off_t mmsx_get_current_pos (mmsx_t *instance);
al@18633 6
al@18633 7 -uint32_t mmsx_get_asf_header_len (mmsx_t *this);
al@18633 8 +uint32_t mmsx_get_asf_header_len (mmsx_t *instance);
al@18633 9
al@18633 10 -uint64_t mmsx_get_asf_packet_len (mmsx_t *this);
al@18633 11 +uint64_t mmsx_get_asf_packet_len (mmsx_t *instance);
al@18633 12
al@18633 13 -int mmsx_get_seekable (mmsx_t *this);
al@18633 14 +int mmsx_get_seekable (mmsx_t *instance);
al@18633 15
al@18633 16 #ifdef __cplusplus
al@18633 17 }
al@18633 18
al@18633 19 --- a/src/mmsh.h
al@18633 20 +++ b/src/mmsh.h
al@18633 21 @@ -41,20 +41,20 @@
al@18633 22
al@18633 23 int mmsh_read (mms_io_t *io, mmsh_t *instance, char *data, int len);
al@18633 24 int mmsh_time_seek (mms_io_t *io, mmsh_t *instance, double time_sec);
al@18633 25 -mms_off_t mmsh_seek (mms_io_t *io, mmsh_t *this, mms_off_t offset, int origin);
al@18633 26 +mms_off_t mmsh_seek (mms_io_t *io, mmsh_t *instance, mms_off_t offset, int origin);
al@18633 27 uint32_t mmsh_get_length (mmsh_t *instance);
al@18633 28 -double mmsh_get_time_length (mmsh_t *this);
al@18633 29 -uint64_t mmsh_get_raw_time_length (mmsh_t *this);
al@18633 30 +double mmsh_get_time_length (mmsh_t *instance);
al@18633 31 +uint64_t mmsh_get_raw_time_length (mmsh_t *instance);
al@18633 32 mms_off_t mmsh_get_current_pos (mmsh_t *instance);
al@18633 33 void mmsh_close (mmsh_t *instance);
al@18633 34
al@18633 35 int mmsh_peek_header (mmsh_t *instance, char *data, int maxsize);
al@18633 36
al@18633 37 -uint32_t mmsh_get_asf_header_len (mmsh_t *this);
al@18633 38 +uint32_t mmsh_get_asf_header_len (mmsh_t *instance);
al@18633 39
al@18633 40 -uint32_t mmsh_get_asf_packet_len (mmsh_t *this);
al@18633 41 +uint32_t mmsh_get_asf_packet_len (mmsh_t *instance);
al@18633 42
al@18633 43 -int mmsh_get_seekable (mmsh_t *this);
al@18633 44 +int mmsh_get_seekable (mmsh_t *instance);
al@18633 45
al@18633 46 #ifdef __cplusplus
al@18633 47 }