internal.h 9.0 KB

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