]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - portable_io.h
mp4: Implement error checking for the write path.
[paraslash.git] / portable_io.h
index fdd4165d70e5acda33fe2b97f1b3141730ce0c08..81dfcf57fc788ba9888d31a520e2f7b71e43774f 100644 (file)
@@ -58,6 +58,11 @@ static inline uint32_t read_u32_be(const void *buf)
        return read_portable_be(32, buf);
 }
 
+static inline uint32_t read_u24_be(const void *buf)
+{
+       return read_portable_be(24, buf);
+}
+
 static inline uint16_t read_u16_be(const void *buf)
 {
        return read_portable_be(16, buf);