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.

235 lines
9.0KB

  1. /*
  2. * Copyright (c) 2000, 2001 Fabrice Bellard
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #ifndef AVFORMAT_ASF_H
  21. #define AVFORMAT_ASF_H
  22. #include <stdint.h>
  23. #include "avformat.h"
  24. #include "metadata.h"
  25. #define PACKET_SIZE 3200
  26. typedef struct {
  27. int num;
  28. unsigned char seq;
  29. /* use for reading */
  30. AVPacket pkt;
  31. int frag_offset;
  32. int timestamp;
  33. int64_t duration;
  34. int ds_span; /* descrambling */
  35. int ds_packet_size;
  36. int ds_chunk_size;
  37. int64_t packet_pos;
  38. uint16_t stream_language_index;
  39. } ASFStream;
  40. typedef uint8_t ff_asf_guid[16];
  41. typedef struct {
  42. ff_asf_guid guid; ///< generated by client computer
  43. uint64_t file_size; /**< in bytes
  44. * invalid if broadcasting */
  45. uint64_t create_time; /**< time of creation, in 100-nanosecond units since 1.1.1601
  46. * invalid if broadcasting */
  47. uint64_t play_time; /**< play time, in 100-nanosecond units
  48. * invalid if broadcasting */
  49. uint64_t send_time; /**< time to send file, in 100-nanosecond units
  50. * invalid if broadcasting (could be ignored) */
  51. uint32_t preroll; /**< timestamp of the first packet, in milliseconds
  52. * if nonzero - subtract from time */
  53. uint32_t ignore; ///< preroll is 64bit - but let's just ignore it
  54. uint32_t flags; /**< 0x01 - broadcast
  55. * 0x02 - seekable
  56. * rest is reserved should be 0 */
  57. uint32_t min_pktsize; /**< size of a data packet
  58. * invalid if broadcasting */
  59. uint32_t max_pktsize; /**< shall be the same as for min_pktsize
  60. * invalid if broadcasting */
  61. uint32_t max_bitrate; /**< bandwidth of stream in bps
  62. * should be the sum of bitrates of the
  63. * individual media streams */
  64. } ASFMainHeader;
  65. typedef struct {
  66. uint32_t packet_number;
  67. uint16_t packet_count;
  68. } ASFIndex;
  69. typedef struct {
  70. uint32_t seqno;
  71. int is_streamed;
  72. int asfid2avid[128]; ///< conversion table from asf ID 2 AVStream ID
  73. ASFStream streams[128]; ///< it's max number and it's not that big
  74. uint32_t stream_bitrates[128]; ///< max number of streams, bitrate for each (for streaming)
  75. char stream_languages[128][6]; ///< max number of streams, language for each (RFC1766, e.g. en-US)
  76. /* non streamed additonnal info */
  77. uint64_t nb_packets; ///< how many packets are there in the file, invalid if broadcasting
  78. int64_t duration; ///< in 100ns units
  79. /* packet filling */
  80. unsigned char multi_payloads_present;
  81. int packet_size_left;
  82. int packet_timestamp_start;
  83. int packet_timestamp_end;
  84. unsigned int packet_nb_payloads;
  85. int packet_nb_frames;
  86. uint8_t packet_buf[PACKET_SIZE];
  87. ByteIOContext pb;
  88. /* only for reading */
  89. uint64_t data_offset; ///< beginning of the first data packet
  90. uint64_t data_object_offset; ///< data object offset (excl. GUID & size)
  91. uint64_t data_object_size; ///< size of the data object
  92. int index_read;
  93. ASFMainHeader hdr;
  94. int packet_flags;
  95. int packet_property;
  96. int packet_timestamp;
  97. int packet_segsizetype;
  98. int packet_segments;
  99. int packet_seq;
  100. int packet_replic_size;
  101. int packet_key_frame;
  102. int packet_padsize;
  103. unsigned int packet_frag_offset;
  104. unsigned int packet_frag_size;
  105. int64_t packet_frag_timestamp;
  106. int packet_multi_size;
  107. int packet_obj_size;
  108. int packet_time_delta;
  109. int packet_time_start;
  110. int64_t packet_pos;
  111. int stream_index;
  112. int64_t last_indexed_pts;
  113. ASFIndex* index_ptr;
  114. uint32_t nb_index_count;
  115. uint32_t nb_index_memory_alloc;
  116. uint16_t maximum_packet;
  117. ASFStream* asf_st; ///< currently decoded stream
  118. } ASFContext;
  119. extern const ff_asf_guid ff_asf_header;
  120. extern const ff_asf_guid ff_asf_file_header;
  121. extern const ff_asf_guid ff_asf_stream_header;
  122. extern const ff_asf_guid ff_asf_ext_stream_header;
  123. extern const ff_asf_guid ff_asf_audio_stream;
  124. extern const ff_asf_guid ff_asf_audio_conceal_none;
  125. extern const ff_asf_guid ff_asf_audio_conceal_spread;
  126. extern const ff_asf_guid ff_asf_video_stream;
  127. extern const ff_asf_guid ff_asf_video_conceal_none;
  128. extern const ff_asf_guid ff_asf_command_stream;
  129. extern const ff_asf_guid ff_asf_comment_header;
  130. extern const ff_asf_guid ff_asf_codec_comment_header;
  131. extern const ff_asf_guid ff_asf_codec_comment1_header;
  132. extern const ff_asf_guid ff_asf_data_header;
  133. extern const ff_asf_guid ff_asf_head1_guid;
  134. extern const ff_asf_guid ff_asf_head2_guid;
  135. extern const ff_asf_guid ff_asf_extended_content_header;
  136. extern const ff_asf_guid ff_asf_simple_index_header;
  137. extern const ff_asf_guid ff_asf_ext_stream_embed_stream_header;
  138. extern const ff_asf_guid ff_asf_ext_stream_audio_stream;
  139. extern const ff_asf_guid ff_asf_metadata_header;
  140. extern const ff_asf_guid ff_asf_marker_header;
  141. extern const ff_asf_guid ff_asf_my_guid;
  142. extern const ff_asf_guid ff_asf_language_guid;
  143. extern const ff_asf_guid ff_asf_content_encryption;
  144. extern const ff_asf_guid ff_asf_ext_content_encryption;
  145. extern const ff_asf_guid ff_asf_digital_signature;
  146. extern const AVMetadataConv ff_asf_metadata_conv[];
  147. #define ASF_PACKET_FLAG_ERROR_CORRECTION_PRESENT 0x80 //1000 0000
  148. // ASF data packet structure
  149. // =========================
  150. //
  151. //
  152. // -----------------------------------
  153. // | Error Correction Data | Optional
  154. // -----------------------------------
  155. // | Payload Parsing Information (PPI) |
  156. // -----------------------------------
  157. // | Payload Data |
  158. // -----------------------------------
  159. // | Padding Data |
  160. // -----------------------------------
  161. // PPI_FLAG - Payload parsing information flags
  162. #define ASF_PPI_FLAG_MULTIPLE_PAYLOADS_PRESENT 1
  163. #define ASF_PPI_FLAG_SEQUENCE_FIELD_IS_BYTE 0x02 //0000 0010
  164. #define ASF_PPI_FLAG_SEQUENCE_FIELD_IS_WORD 0x04 //0000 0100
  165. #define ASF_PPI_FLAG_SEQUENCE_FIELD_IS_DWORD 0x06 //0000 0110
  166. #define ASF_PPI_MASK_SEQUENCE_FIELD_SIZE 0x06 //0000 0110
  167. #define ASF_PPI_FLAG_PADDING_LENGTH_FIELD_IS_BYTE 0x08 //0000 1000
  168. #define ASF_PPI_FLAG_PADDING_LENGTH_FIELD_IS_WORD 0x10 //0001 0000
  169. #define ASF_PPI_FLAG_PADDING_LENGTH_FIELD_IS_DWORD 0x18 //0001 1000
  170. #define ASF_PPI_MASK_PADDING_LENGTH_FIELD_SIZE 0x18 //0001 1000
  171. #define ASF_PPI_FLAG_PACKET_LENGTH_FIELD_IS_BYTE 0x20 //0010 0000
  172. #define ASF_PPI_FLAG_PACKET_LENGTH_FIELD_IS_WORD 0x40 //0100 0000
  173. #define ASF_PPI_FLAG_PACKET_LENGTH_FIELD_IS_DWORD 0x60 //0110 0000
  174. #define ASF_PPI_MASK_PACKET_LENGTH_FIELD_SIZE 0x60 //0110 0000
  175. // PL_FLAG - Payload flags
  176. #define ASF_PL_FLAG_REPLICATED_DATA_LENGTH_FIELD_IS_BYTE 0x01 //0000 0001
  177. #define ASF_PL_FLAG_REPLICATED_DATA_LENGTH_FIELD_IS_WORD 0x02 //0000 0010
  178. #define ASF_PL_FLAG_REPLICATED_DATA_LENGTH_FIELD_IS_DWORD 0x03 //0000 0011
  179. #define ASF_PL_MASK_REPLICATED_DATA_LENGTH_FIELD_SIZE 0x03 //0000 0011
  180. #define ASF_PL_FLAG_OFFSET_INTO_MEDIA_OBJECT_LENGTH_FIELD_IS_BYTE 0x04 //0000 0100
  181. #define ASF_PL_FLAG_OFFSET_INTO_MEDIA_OBJECT_LENGTH_FIELD_IS_WORD 0x08 //0000 1000
  182. #define ASF_PL_FLAG_OFFSET_INTO_MEDIA_OBJECT_LENGTH_FIELD_IS_DWORD 0x0c //0000 1100
  183. #define ASF_PL_MASK_OFFSET_INTO_MEDIA_OBJECT_LENGTH_FIELD_SIZE 0x0c //0000 1100
  184. #define ASF_PL_FLAG_MEDIA_OBJECT_NUMBER_LENGTH_FIELD_IS_BYTE 0x10 //0001 0000
  185. #define ASF_PL_FLAG_MEDIA_OBJECT_NUMBER_LENGTH_FIELD_IS_WORD 0x20 //0010 0000
  186. #define ASF_PL_FLAG_MEDIA_OBJECT_NUMBER_LENGTH_FIELD_IS_DWORD 0x30 //0011 0000
  187. #define ASF_PL_MASK_MEDIA_OBJECT_NUMBER_LENGTH_FIELD_SIZE 0x30 //0011 0000
  188. #define ASF_PL_FLAG_STREAM_NUMBER_LENGTH_FIELD_IS_BYTE 0x40 //0100 0000
  189. #define ASF_PL_MASK_STREAM_NUMBER_LENGTH_FIELD_SIZE 0xc0 //1100 0000
  190. #define ASF_PL_FLAG_PAYLOAD_LENGTH_FIELD_IS_BYTE 0x40 //0100 0000
  191. #define ASF_PL_FLAG_PAYLOAD_LENGTH_FIELD_IS_WORD 0x80 //1000 0000
  192. #define ASF_PL_MASK_PAYLOAD_LENGTH_FIELD_SIZE 0xc0 //1100 0000
  193. #define ASF_PL_FLAG_KEY_FRAME 0x80 //1000 0000
  194. extern AVInputFormat asf_demuxer;
  195. int ff_put_str16_nolen(ByteIOContext *s, const char *tag);
  196. #endif /* AVFORMAT_ASF_H */