comparison isom.h @ 1216:fec0a3d5408f libavformat

move common code from mov.c and movenc.c to isom.c
author bcoudurier
date Tue, 01 Aug 2006 14:58:15 +0000
parents mov.h@172781cd7c9d
children 8bf9be9bb107
comparison
equal deleted inserted replaced
1215:eee822269f39 1216:fec0a3d5408f
1 #ifndef FFMPEG_ISOM_H
2 #define FFMPEG_ISOM_H
3
4 /* isom.c */
5 extern const CodecTag ff_mov_obj_type[];
6
7 int ff_mov_iso639_to_lang(const char *lang, int mp4);
8 int ff_mov_lang_to_iso639(int code, char *to);
9
10 typedef struct Time2Sample{
11 int count;
12 int duration;
13 }Time2Sample;
14
15 #endif /* FFMPEG_ISOM_H */