git.videolan.org
/
ffmpeg.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
move common code from mov.c and movenc.c to isom.c
[ffmpeg.git]
/
libavformat
/
isom.h
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 */