blob: e7a999b56afbf49e5f8a1280eaa9ba706e210bfb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef FFMPEG_MOV_H
#define FFMPEG_MOV_H
/* mov.c */
extern const CodecTag ff_mov_obj_type[];
typedef struct Time2Sample{
int count;
int duration;
}Time2Sample;
#endif /* FFMPEG_MOV_H */
|