You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
305B

  1. #ifndef FFMPEG_ISOM_H
  2. #define FFMPEG_ISOM_H
  3. /* isom.c */
  4. extern const CodecTag ff_mov_obj_type[];
  5. int ff_mov_iso639_to_lang(const char *lang, int mp4);
  6. int ff_mov_lang_to_iso639(int code, char *to);
  7. typedef struct Time2Sample{
  8. int count;
  9. int duration;
  10. }Time2Sample;
  11. #endif /* FFMPEG_ISOM_H */