]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - mp4.h
mp4: Rename mp4_meta_update() to mp4_update_meta().
[paraslash.git] / mp4.h
diff --git a/mp4.h b/mp4.h
index d685287fa555cad19f608b04147cd5323fe6fb15..4c4aed2210cf472473c151529c5b1928dbd288cc 100644 (file)
--- a/mp4.h
+++ b/mp4.h
@@ -13,7 +13,7 @@ struct mp4_tag {
 
 struct mp4_metadata {
     struct mp4_tag *tags;
-    uint32_t count;
+    unsigned count;
 };
 
 struct mp4; /* opaque */
@@ -28,5 +28,5 @@ uint32_t mp4_num_samples(const struct mp4 *f);
 uint64_t mp4_get_duration(const struct mp4 *f);
 int mp4_open_meta(const struct mp4_callback *cb, struct mp4 **result);
 struct mp4_metadata *mp4_get_meta(struct mp4 *f);
-int mp4_meta_update(struct mp4 *f);
+int mp4_update_meta(struct mp4 *f);
 char *mp4_get_tag_value(const struct mp4 *f, const char *item);