Welcome to mirror list, hosted at ThFree Co, Russian Federation.

isom.h « libavformat - github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90a4ed0a373b39489770c3238a101a178604b254 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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 */