diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-04-26 11:36:05 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-04-26 11:36:05 +0000 |
commit | e23848a49cee6f03df4c092bbdc6bd2189f0a42c (patch) | |
tree | 3dbbfe313356f4630ba6b41e5291e7fa6e7f9879 /libavformat/isom.h | |
parent | f8c18cd7119f6f67bbe4266b7def1704f5f4471d (diff) | |
download | ffmpeg-e23848a49cee6f03df4c092bbdc6bd2189f0a42c.tar.gz |
cosmectics, use consistant and homogeneous type names for atoms
Originally committed as revision 8828 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/isom.h')
-rw-r--r-- | libavformat/isom.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/isom.h b/libavformat/isom.h index efcb1fc42b..9fa49e7304 100644 --- a/libavformat/isom.h +++ b/libavformat/isom.h @@ -32,9 +32,9 @@ extern const AVCodecTag codec_movaudio_tags[]; int ff_mov_iso639_to_lang(const char *lang, int mp4); int ff_mov_lang_to_iso639(int code, char *to); -typedef struct Time2Sample{ +typedef struct { int count; int duration; -}Time2Sample; +} MOV_stts_t; #endif /* FFMPEG_ISOM_H */ |