summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohamed Tarek <mt@rockbox.org>2009-05-16 19:05:50 +0000
committerMohamed Tarek <mt@rockbox.org>2009-05-16 19:05:50 +0000
commitb68707d4651876435161729beab68a329e6d9b6d (patch)
tree6420d0c528ba5ad2392fc4aeaa9b3df32e3f6914
parent399a094b657e90b7477054fe2c8bdebb85a25118 (diff)
downloadrockbox-b68707d4651876435161729beab68a329e6d9b6d.tar.gz
rockbox-b68707d4651876435161729beab68a329e6d9b6d.zip
Add read_uint8() and read_uint16be() to metadata_common.c/h
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20968 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/metadata/metadata_common.c17
-rw-r--r--apps/metadata/metadata_common.h3
2 files changed, 20 insertions, 0 deletions
diff --git a/apps/metadata/metadata_common.c b/apps/metadata/metadata_common.c
index 37768bdd4a..38761e3dae 100644
--- a/apps/metadata/metadata_common.c
+++ b/apps/metadata/metadata_common.c
@@ -96,8 +96,25 @@ long read_string(int fd, char* buf, long buf_size, int eos, long size)
96 *buf = 0; 96 *buf = 0;
97 return read_bytes; 97 return read_bytes;
98} 98}
99/* Read an unsigned 8-bit integer from a file. */
100int read_uint8(int fd, uint8_t* buf)
101{
102 size_t n;
103
104 n = read(fd, (char*) buf, 1);
105 return n;
106}
99 107
100#ifdef ROCKBOX_LITTLE_ENDIAN 108#ifdef ROCKBOX_LITTLE_ENDIAN
109/* Read an unsigned 16-bit integer from a big-endian file. */
110int read_uint16be(int fd, uint16_t* buf)
111{
112 size_t n;
113
114 n = read(fd, (char*) buf, 2);
115 *buf = betoh16(*buf);
116 return n;
117}
101/* Read an unsigned 32-bit integer from a big-endian file. */ 118/* Read an unsigned 32-bit integer from a big-endian file. */
102int read_uint32be(int fd, uint32_t* buf) 119int read_uint32be(int fd, uint32_t* buf)
103{ 120{
diff --git a/apps/metadata/metadata_common.h b/apps/metadata/metadata_common.h
index 2a48b25dc6..c8c0dc463f 100644
--- a/apps/metadata/metadata_common.h
+++ b/apps/metadata/metadata_common.h
@@ -38,12 +38,15 @@ bool read_vorbis_tags(int fd, struct mp3entry *id3,
38bool skip_id3v2(int fd, struct mp3entry *id3); 38bool skip_id3v2(int fd, struct mp3entry *id3);
39long read_string(int fd, char* buf, long buf_size, int eos, long size); 39long read_string(int fd, char* buf, long buf_size, int eos, long size);
40 40
41int read_uint8(int fd, uint8_t* buf);
41#ifdef ROCKBOX_BIG_ENDIAN 42#ifdef ROCKBOX_BIG_ENDIAN
43#define read_uint16be(fd,buf) read((fd), (buf), 2)
42#define read_uint32be(fd,buf) read((fd), (buf), 4) 44#define read_uint32be(fd,buf) read((fd), (buf), 4)
43int read_uint16le(int fd, uint16_t* buf); 45int read_uint16le(int fd, uint16_t* buf);
44int read_uint32le(int fd, uint32_t* buf); 46int read_uint32le(int fd, uint32_t* buf);
45int read_uint64le(int fd, uint64_t* buf); 47int read_uint64le(int fd, uint64_t* buf);
46#else 48#else
49int read_uint16be(int fd, uint16_t* buf);
47int read_uint32be(int fd, uint32_t* buf); 50int read_uint32be(int fd, uint32_t* buf);
48#define read_uint16le(fd,buf) read((fd), (buf), 2) 51#define read_uint16le(fd,buf) read((fd), (buf), 2)
49#define read_uint32le(fd,buf) read((fd), (buf), 4) 52#define read_uint32le(fd,buf) read((fd), (buf), 4)