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.

175 lines
4.8KB

  1. /*
  2. * MOV, 3GP, MP4 muxer
  3. * Copyright (c) 2003 Thomas Raivio
  4. * Copyright (c) 2004 Gildas Bazin <gbazin at videolan dot org>
  5. * Copyright (c) 2009 Baptiste Coudurier <baptiste dot coudurier at gmail dot com>
  6. *
  7. * This file is part of Libav.
  8. *
  9. * Libav is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * Libav is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with Libav; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. #ifndef AVFORMAT_MOVENC_H
  24. #define AVFORMAT_MOVENC_H
  25. #include "avformat.h"
  26. #define MOV_INDEX_CLUSTER_SIZE 16384
  27. #define MOV_TIMESCALE 1000
  28. #define RTP_MAX_PACKET_SIZE 1450
  29. #define MODE_MP4 0x01
  30. #define MODE_MOV 0x02
  31. #define MODE_3GP 0x04
  32. #define MODE_PSP 0x08 // example working PSP command line:
  33. // avconv -i testinput.avi -f psp -r 14.985 -s 320x240 -b 768 -ar 24000 -ab 32 M4V00001.MP4
  34. #define MODE_3G2 0x10
  35. #define MODE_IPOD 0x20
  36. #define MODE_ISM 0x40
  37. typedef struct MOVIentry {
  38. uint64_t pos;
  39. int64_t dts;
  40. unsigned int size;
  41. unsigned int samples_in_chunk;
  42. unsigned int entries;
  43. int cts;
  44. #define MOV_SYNC_SAMPLE 0x0001
  45. #define MOV_PARTIAL_SYNC_SAMPLE 0x0002
  46. uint32_t flags;
  47. } MOVIentry;
  48. typedef struct HintSample {
  49. uint8_t *data;
  50. int size;
  51. int sample_number;
  52. int offset;
  53. int own_data;
  54. } HintSample;
  55. typedef struct {
  56. int size;
  57. int len;
  58. HintSample *samples;
  59. } HintSampleQueue;
  60. typedef struct {
  61. int64_t offset;
  62. int64_t time;
  63. int64_t duration;
  64. int64_t tfrf_offset;
  65. } MOVFragmentInfo;
  66. typedef struct MOVIndex {
  67. int mode;
  68. int entry;
  69. unsigned timescale;
  70. uint64_t time;
  71. int64_t track_duration;
  72. long sample_count;
  73. long sample_size;
  74. int has_keyframes;
  75. #define MOV_TRACK_CTTS 0x0001
  76. #define MOV_TRACK_STPS 0x0002
  77. uint32_t flags;
  78. int language;
  79. int track_id;
  80. int tag; ///< stsd fourcc
  81. AVCodecContext *enc;
  82. int vos_len;
  83. uint8_t *vos_data;
  84. MOVIentry *cluster;
  85. int audio_vbr;
  86. int height; ///< active picture (w/o VBI) height for D-10/IMX
  87. uint32_t tref_tag;
  88. int tref_id; ///< trackID of the referenced track
  89. int64_t start_dts;
  90. int hint_track; ///< the track that hints this track, -1 if no hint track is set
  91. int src_track; ///< the track that this hint track describes
  92. AVFormatContext *rtp_ctx; ///< the format context for the hinting rtp muxer
  93. uint32_t prev_rtp_ts;
  94. int64_t cur_rtp_ts_unwrapped;
  95. uint32_t max_packet_size;
  96. int64_t default_duration;
  97. uint32_t default_sample_flags;
  98. uint32_t default_size;
  99. HintSampleQueue sample_queue;
  100. AVIOContext *mdat_buf;
  101. int64_t moof_size_offset;
  102. int64_t data_offset;
  103. int64_t frag_start;
  104. int64_t tfrf_offset;
  105. int nb_frag_info;
  106. MOVFragmentInfo *frag_info;
  107. struct {
  108. int64_t struct_offset;
  109. int first_packet_seq;
  110. int first_packet_entry;
  111. int packet_seq;
  112. int packet_entry;
  113. int slices;
  114. } vc1_info;
  115. } MOVTrack;
  116. typedef struct MOVMuxContext {
  117. const AVClass *av_class;
  118. int mode;
  119. int64_t time;
  120. int nb_streams;
  121. int chapter_track; ///< qt chapter track number
  122. int64_t mdat_pos;
  123. uint64_t mdat_size;
  124. MOVTrack *tracks;
  125. int flags;
  126. int rtp_flags;
  127. int iods_skip;
  128. int iods_video_profile;
  129. int iods_audio_profile;
  130. int fragments;
  131. int max_fragment_duration;
  132. int min_fragment_duration;
  133. int max_fragment_size;
  134. int ism_lookahead;
  135. AVIOContext *mdat_buf;
  136. } MOVMuxContext;
  137. #define FF_MOV_FLAG_RTP_HINT 1
  138. #define FF_MOV_FLAG_FRAGMENT 2
  139. #define FF_MOV_FLAG_EMPTY_MOOV 4
  140. #define FF_MOV_FLAG_FRAG_KEYFRAME 8
  141. #define FF_MOV_FLAG_SEPARATE_MOOF 16
  142. #define FF_MOV_FLAG_FRAG_CUSTOM 32
  143. #define FF_MOV_FLAG_ISML 64
  144. int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt);
  145. int ff_mov_init_hinting(AVFormatContext *s, int index, int src_index);
  146. int ff_mov_add_hinted_packet(AVFormatContext *s, AVPacket *pkt,
  147. int track_index, int sample,
  148. uint8_t *sample_data, int sample_size);
  149. void ff_mov_close_hinting(MOVTrack *track);
  150. #endif /* AVFORMAT_MOVENC_H */