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.

242 lines
8.2KB

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