m4af: move internal struct m4af_itmf_entry_t from header

This commit is contained in:
nu774 2015-06-12 21:04:49 +09:00
parent c77dae004d
commit 4c9167c1cb
2 changed files with 8 additions and 8 deletions

View File

@ -39,6 +39,14 @@ typedef struct m4af_chunk_entry_t {
uint32_t duration;
} m4af_chunk_entry_t;
typedef struct m4af_itmf_entry_t {
uint32_t fcc;
char *name;
uint32_t type_code;
char *data;
uint32_t data_size;
} m4af_itmf_entry_t;
typedef struct m4af_track_t {
uint32_t codec;
uint32_t timescale;

View File

@ -71,14 +71,6 @@ typedef struct m4af_io_callbacks_t {
m4af_tell_callback tell;
} m4af_io_callbacks_t;
typedef struct m4af_itmf_entry_t {
uint32_t fcc;
char *name;
uint32_t type_code;
char *data;
uint32_t data_size;
} m4af_itmf_entry_t;
typedef struct m4af_ctx_t m4af_ctx_t;