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.

246 lines
8.4KB

  1. /*
  2. * copyright (c) 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_INTERNAL_H
  21. #define AVFORMAT_INTERNAL_H
  22. #include <stdint.h>
  23. #include "avformat.h"
  24. #define MAX_URL_SIZE 4096
  25. typedef struct AVCodecTag {
  26. enum CodecID id;
  27. unsigned int tag;
  28. } AVCodecTag;
  29. void ff_dynarray_add(intptr_t **tab_ptr, int *nb_ptr, intptr_t elem);
  30. #ifdef __GNUC__
  31. #define dynarray_add(tab, nb_ptr, elem)\
  32. do {\
  33. __typeof__(tab) _tab = (tab);\
  34. __typeof__(elem) _elem = (elem);\
  35. (void)sizeof(**_tab == _elem); /* check that types are compatible */\
  36. ff_dynarray_add((intptr_t **)_tab, nb_ptr, (intptr_t)_elem);\
  37. } while(0)
  38. #else
  39. #define dynarray_add(tab, nb_ptr, elem)\
  40. do {\
  41. ff_dynarray_add((intptr_t **)(tab), nb_ptr, (intptr_t)(elem));\
  42. } while(0)
  43. #endif
  44. time_t mktimegm(struct tm *tm);
  45. struct tm *brktimegm(time_t secs, struct tm *tm);
  46. const char *small_strptime(const char *p, const char *fmt,
  47. struct tm *dt);
  48. char *ff_data_to_hex(char *buf, const uint8_t *src, int size, int lowercase);
  49. /**
  50. * Parse a string of hexadecimal strings. Any space between the hexadecimal
  51. * digits is ignored.
  52. *
  53. * @param data if non-null, the parsed data is written to this pointer
  54. * @param p the string to parse
  55. * @return the number of bytes written (or to be written, if data is null)
  56. */
  57. int ff_hex_to_data(uint8_t *data, const char *p);
  58. void ff_program_add_stream_index(AVFormatContext *ac, int progid, unsigned int idx);
  59. /**
  60. * Add packet to AVFormatContext->packet_buffer list, determining its
  61. * interleaved position using compare() function argument.
  62. */
  63. void ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
  64. int (*compare)(AVFormatContext *, AVPacket *, AVPacket *));
  65. void ff_read_frame_flush(AVFormatContext *s);
  66. #define NTP_OFFSET 2208988800ULL
  67. #define NTP_OFFSET_US (NTP_OFFSET * 1000000ULL)
  68. /** Get the current time since NTP epoch in microseconds. */
  69. uint64_t ff_ntp_time(void);
  70. #if FF_API_URL_SPLIT
  71. /**
  72. * @deprecated use av_url_split() instead
  73. */
  74. void ff_url_split(char *proto, int proto_size,
  75. char *authorization, int authorization_size,
  76. char *hostname, int hostname_size,
  77. int *port_ptr,
  78. char *path, int path_size,
  79. const char *url);
  80. #endif
  81. /**
  82. * Assemble a URL string from components. This is the reverse operation
  83. * of av_url_split.
  84. *
  85. * Note, this requires networking to be initialized, so the caller must
  86. * ensure ff_network_init has been called.
  87. *
  88. * @see av_url_split
  89. *
  90. * @param str the buffer to fill with the url
  91. * @param size the size of the str buffer
  92. * @param proto the protocol identifier, if null, the separator
  93. * after the identifier is left out, too
  94. * @param authorization an optional authorization string, may be null.
  95. * An empty string is treated the same as a null string.
  96. * @param hostname the host name string
  97. * @param port the port number, left out from the string if negative
  98. * @param fmt a generic format string for everything to add after the
  99. * host/port, may be null
  100. * @return the number of characters written to the destination buffer
  101. */
  102. int ff_url_join(char *str, int size, const char *proto,
  103. const char *authorization, const char *hostname,
  104. int port, const char *fmt, ...);
  105. /**
  106. * Append the media-specific SDP fragment for the media stream c
  107. * to the buffer buff.
  108. *
  109. * Note, the buffer needs to be initialized, since it is appended to
  110. * existing content.
  111. *
  112. * @param buff the buffer to append the SDP fragment to
  113. * @param size the size of the buff buffer
  114. * @param c the AVCodecContext of the media to describe
  115. * @param dest_addr the destination address of the media stream, may be NULL
  116. * @param dest_type the destination address type, may be NULL
  117. * @param port the destination port of the media stream, 0 if unknown
  118. * @param ttl the time to live of the stream, 0 if not multicast
  119. */
  120. void ff_sdp_write_media(char *buff, int size, AVCodecContext *c,
  121. const char *dest_addr, const char *dest_type,
  122. int port, int ttl);
  123. /**
  124. * Write a packet to another muxer than the one the user originally
  125. * intended. Useful when chaining muxers, where one muxer internally
  126. * writes a received packet to another muxer.
  127. *
  128. * @param dst the muxer to write the packet to
  129. * @param dst_stream the stream index within dst to write the packet to
  130. * @param pkt the packet to be written
  131. * @param src the muxer the packet originally was intended for
  132. * @return the value av_write_frame returned
  133. */
  134. int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt,
  135. AVFormatContext *src);
  136. /**
  137. * Get the length in bytes which is needed to store val as v.
  138. */
  139. int ff_get_v_length(uint64_t val);
  140. /**
  141. * Put val using a variable number of bytes.
  142. */
  143. void ff_put_v(ByteIOContext *bc, uint64_t val);
  144. /**
  145. * Read a whole line of text from ByteIOContext. Stop reading after reaching
  146. * either a \n, a \0 or EOF. The returned string is always \0 terminated,
  147. * and may be truncated if the buffer is too small.
  148. *
  149. * @param s the read-only ByteIOContext
  150. * @param buf buffer to store the read line
  151. * @param maxlen size of the buffer
  152. * @return the length of the string written in the buffer, not including the
  153. * final \0
  154. */
  155. int ff_get_line(ByteIOContext *s, char *buf, int maxlen);
  156. #define SPACE_CHARS " \t\r\n"
  157. /**
  158. * Callback function type for ff_parse_key_value.
  159. *
  160. * @param key a pointer to the key
  161. * @param key_len the number of bytes that belong to the key, including the '='
  162. * char
  163. * @param dest return the destination pointer for the value in *dest, may
  164. * be null to ignore the value
  165. * @param dest_len the length of the *dest buffer
  166. */
  167. typedef void (*ff_parse_key_val_cb)(void *context, const char *key,
  168. int key_len, char **dest, int *dest_len);
  169. /**
  170. * Parse a string with comma-separated key=value pairs. The value strings
  171. * may be quoted and may contain escaped characters within quoted strings.
  172. *
  173. * @param str the string to parse
  174. * @param callback_get_buf function that returns where to store the
  175. * unescaped value string.
  176. * @param context the opaque context pointer to pass to callback_get_buf
  177. */
  178. void ff_parse_key_value(const char *str, ff_parse_key_val_cb callback_get_buf,
  179. void *context);
  180. /**
  181. * Find stream index based on format-specific stream ID
  182. * @return stream index, or < 0 on error
  183. */
  184. int ff_find_stream_index(AVFormatContext *s, int id);
  185. /**
  186. * Internal version of av_index_search_timestamp
  187. */
  188. int ff_index_search_timestamp(const AVIndexEntry *entries, int nb_entries,
  189. int64_t wanted_timestamp, int flags);
  190. /**
  191. * Internal version of av_add_index_entry
  192. */
  193. int ff_add_index_entry(AVIndexEntry **index_entries,
  194. int *nb_index_entries,
  195. unsigned int *index_entries_allocated_size,
  196. int64_t pos, int64_t timestamp, int size, int distance, int flags);
  197. /**
  198. * Add a new chapter.
  199. *
  200. * @param s media file handle
  201. * @param id unique ID for this chapter
  202. * @param start chapter start time in time_base units
  203. * @param end chapter end time in time_base units
  204. * @param title chapter title
  205. *
  206. * @return AVChapter or NULL on error
  207. */
  208. AVChapter *ff_new_chapter(AVFormatContext *s, int id, AVRational time_base,
  209. int64_t start, int64_t end, const char *title);
  210. /**
  211. * Ensure the index uses less memory than the maximum specified in
  212. * AVFormatContext.max_index_size by discarding entries if it grows
  213. * too large.
  214. */
  215. void ff_reduce_index(AVFormatContext *s, int stream_index);
  216. #endif /* AVFORMAT_INTERNAL_H */