FFmpeg/libavformat/isom.h
Baptiste Coudurier e40ee6a268 move common code from mov.c and movenc.c to isom.c
Originally committed as revision 5882 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-08-01 14:58:15 +00:00

16 lines
305 B
C

#ifndef FFMPEG_ISOM_H
#define FFMPEG_ISOM_H
/* isom.c */
extern const CodecTag ff_mov_obj_type[];
int ff_mov_iso639_to_lang(const char *lang, int mp4);
int ff_mov_lang_to_iso639(int code, char *to);
typedef struct Time2Sample{
int count;
int duration;
}Time2Sample;
#endif /* FFMPEG_ISOM_H */