diff options
author | Martin Storsjö <[email protected]> | 2013-06-02 23:29:04 +0300 |
---|---|---|
committer | Martin Storsjö <[email protected]> | 2013-06-03 11:08:18 +0300 |
commit | 9683e37cd5c556c9974e78fba344ede4f33afd18 (patch) | |
tree | 3fcc940a3667d6b0016f4fd0da7dc9ffd3123295 | |
parent | 2d66a58ccde05e764594bd7e5f0f9244634d0b2c (diff) |
movenc: Change the track struct name to match the typedef
This makes the struct name (which isn't used anywhere) match the
name of the typedef, as for all the other structs declared in this
header.
Signed-off-by: Martin Storsjö <[email protected]>
-rw-r--r-- | libavformat/movenc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/movenc.h b/libavformat/movenc.h index e20ef1475b..879c942a9f 100644 --- a/libavformat/movenc.h +++ b/libavformat/movenc.h @@ -73,7 +73,7 @@ typedef struct MOVFragmentInfo { int64_t tfrf_offset; } MOVFragmentInfo; -typedef struct MOVIndex { +typedef struct MOVTrack { int mode; int entry; unsigned timescale; |