From b7e2fb1f6e6e057cfe90ded2ffb508b8200d7d68 Mon Sep 17 00:00:00 2001 From: Nathan Caldwell Date: Mon, 12 Jan 2009 13:56:21 -0700 Subject: [PATCH] Move mk_writeTags(), it shouldn't be part of the public API. --- include/libmkv.h | 1 - src/matroska.h | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/include/libmkv.h b/include/libmkv.h index 5fd06cb..d1735d8 100644 --- a/include/libmkv.h +++ b/include/libmkv.h @@ -233,7 +233,6 @@ char *mk_laceXiph(uint64_t *sizes, uint8_t num_frames, uint64_t *output_size); int mk_createTagSimple(mk_Writer *w, char *tag_id, char *value); -int mk_writeTags(mk_Writer *w); #ifdef __cplusplus } diff --git a/src/matroska.h b/src/matroska.h index 665f27c..02acf30 100644 --- a/src/matroska.h +++ b/src/matroska.h @@ -283,6 +283,7 @@ int mk_writeSeek(mk_Writer *w, mk_Context *c, unsigned seek_id, int mk_writeSeekHead(mk_Writer *w, int64_t *pointer); int mk_writeTracks(mk_Writer *w, mk_Context *tracks); int mk_writeChapters(mk_Writer *w); +int mk_writeTags(mk_Writer *w); int mk_seekFile(mk_Writer *w, uint64_t pos); #endif -- 2.11.4.GIT