internal.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349
  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 AVCodecID id;
  32. unsigned int tag;
  33. } AVCodecTag;
  34. typedef struct CodecMime{
  35. char str[32];
  36. enum AVCodecID id;
  37. } CodecMime;
  38. #ifdef __GNUC__
  39. #define dynarray_add(tab, nb_ptr, elem)\
  40. do {\
  41. __typeof__(tab) _tab = (tab);\
  42. __typeof__(elem) _elem = (elem);\
  43. (void)sizeof(**_tab == _elem); /* check that types are compatible */\
  44. av_dynarray_add(_tab, nb_ptr, _elem);\
  45. } while(0)
  46. #else
  47. #define dynarray_add(tab, nb_ptr, elem)\
  48. do {\
  49. av_dynarray_add((tab), nb_ptr, (elem));\
  50. } while(0)
  51. #endif
  52. struct tm *ff_brktimegm(time_t secs, struct tm *tm);
  53. char *ff_data_to_hex(char *buf, const uint8_t *src, int size, int lowercase);
  54. /**
  55. * Parse a string of hexadecimal strings. Any space between the hexadecimal
  56. * digits is ignored.
  57. *
  58. * @param data if non-null, the parsed data is written to this pointer
  59. * @param p the string to parse
  60. * @return the number of bytes written (or to be written, if data is null)
  61. */
  62. int ff_hex_to_data(uint8_t *data, const char *p);
  63. void ff_program_add_stream_index(AVFormatContext *ac, int progid, unsigned int idx);
  64. /**
  65. * Add packet to AVFormatContext->packet_buffer list, determining its
  66. * interleaved position using compare() function argument.
  67. * @return 0, or < 0 on error
  68. */
  69. int ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
  70. int (*compare)(AVFormatContext *, AVPacket *, AVPacket *));
  71. void ff_read_frame_flush(AVFormatContext *s);
  72. #define NTP_OFFSET 2208988800ULL
  73. #define NTP_OFFSET_US (NTP_OFFSET * 1000000ULL)
  74. /** Get the current time since NTP epoch in microseconds. */
  75. uint64_t ff_ntp_time(void);
  76. /**
  77. * Assemble a URL string from components. This is the reverse operation
  78. * of av_url_split.
  79. *
  80. * Note, this requires networking to be initialized, so the caller must
  81. * ensure ff_network_init has been called.
  82. *
  83. * @see av_url_split
  84. *
  85. * @param str the buffer to fill with the url
  86. * @param size the size of the str buffer
  87. * @param proto the protocol identifier, if null, the separator
  88. * after the identifier is left out, too
  89. * @param authorization an optional authorization string, may be null.
  90. * An empty string is treated the same as a null string.
  91. * @param hostname the host name string
  92. * @param port the port number, left out from the string if negative
  93. * @param fmt a generic format string for everything to add after the
  94. * host/port, may be null
  95. * @return the number of characters written to the destination buffer
  96. */
  97. int ff_url_join(char *str, int size, const char *proto,
  98. const char *authorization, const char *hostname,
  99. int port, const char *fmt, ...) av_printf_format(7, 8);
  100. /**
  101. * Append the media-specific SDP fragment for the media stream c
  102. * to the buffer buff.
  103. *
  104. * Note, the buffer needs to be initialized, since it is appended to
  105. * existing content.
  106. *
  107. * @param buff the buffer to append the SDP fragment to
  108. * @param size the size of the buff buffer
  109. * @param c the AVCodecContext of the media to describe
  110. * @param dest_addr the destination address of the media stream, may be NULL
  111. * @param dest_type the destination address type, may be NULL
  112. * @param port the destination port of the media stream, 0 if unknown
  113. * @param ttl the time to live of the stream, 0 if not multicast
  114. * @param fmt the AVFormatContext, which might contain options modifying
  115. * the generated SDP
  116. */
  117. void ff_sdp_write_media(char *buff, int size, AVCodecContext *c,
  118. const char *dest_addr, const char *dest_type,
  119. int port, int ttl, AVFormatContext *fmt);
  120. /**
  121. * Write a packet to another muxer than the one the user originally
  122. * intended. Useful when chaining muxers, where one muxer internally
  123. * writes a received packet to another muxer.
  124. *
  125. * @param dst the muxer to write the packet to
  126. * @param dst_stream the stream index within dst to write the packet to
  127. * @param pkt the packet to be written
  128. * @param src the muxer the packet originally was intended for
  129. * @return the value av_write_frame returned
  130. */
  131. int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt,
  132. AVFormatContext *src);
  133. /**
  134. * Get the length in bytes which is needed to store val as v.
  135. */
  136. int ff_get_v_length(uint64_t val);
  137. /**
  138. * Put val using a variable number of bytes.
  139. */
  140. void ff_put_v(AVIOContext *bc, uint64_t val);
  141. /**
  142. * Read a whole line of text from AVIOContext. Stop reading after reaching
  143. * either a \\n, a \\0 or EOF. The returned string is always \\0-terminated,
  144. * and may be truncated if the buffer is too small.
  145. *
  146. * @param s the read-only AVIOContext
  147. * @param buf buffer to store the read line
  148. * @param maxlen size of the buffer
  149. * @return the length of the string written in the buffer, not including the
  150. * final \\0
  151. */
  152. int ff_get_line(AVIOContext *s, char *buf, int maxlen);
  153. #define SPACE_CHARS " \t\r\n"
  154. /**
  155. * Callback function type for ff_parse_key_value.
  156. *
  157. * @param key a pointer to the key
  158. * @param key_len the number of bytes that belong to the key, including the '='
  159. * char
  160. * @param dest return the destination pointer for the value in *dest, may
  161. * be null to ignore the value
  162. * @param dest_len the length of the *dest buffer
  163. */
  164. typedef void (*ff_parse_key_val_cb)(void *context, const char *key,
  165. int key_len, char **dest, int *dest_len);
  166. /**
  167. * Parse a string with comma-separated key=value pairs. The value strings
  168. * may be quoted and may contain escaped characters within quoted strings.
  169. *
  170. * @param str the string to parse
  171. * @param callback_get_buf function that returns where to store the
  172. * unescaped value string.
  173. * @param context the opaque context pointer to pass to callback_get_buf
  174. */
  175. void ff_parse_key_value(const char *str, ff_parse_key_val_cb callback_get_buf,
  176. void *context);
  177. /**
  178. * Find stream index based on format-specific stream ID
  179. * @return stream index, or < 0 on error
  180. */
  181. int ff_find_stream_index(AVFormatContext *s, int id);
  182. /**
  183. * Internal version of av_index_search_timestamp
  184. */
  185. int ff_index_search_timestamp(const AVIndexEntry *entries, int nb_entries,
  186. int64_t wanted_timestamp, int flags);
  187. /**
  188. * Internal version of av_add_index_entry
  189. */
  190. int ff_add_index_entry(AVIndexEntry **index_entries,
  191. int *nb_index_entries,
  192. unsigned int *index_entries_allocated_size,
  193. int64_t pos, int64_t timestamp, int size, int distance, int flags);
  194. /**
  195. * Add a new chapter.
  196. *
  197. * @param s media file handle
  198. * @param id unique ID for this chapter
  199. * @param start chapter start time in time_base units
  200. * @param end chapter end time in time_base units
  201. * @param title chapter title
  202. *
  203. * @return AVChapter or NULL on error
  204. */
  205. AVChapter *avpriv_new_chapter(AVFormatContext *s, int id, AVRational time_base,
  206. int64_t start, int64_t end, const char *title);
  207. /**
  208. * Ensure the index uses less memory than the maximum specified in
  209. * AVFormatContext.max_index_size by discarding entries if it grows
  210. * too large.
  211. */
  212. void ff_reduce_index(AVFormatContext *s, int stream_index);
  213. /*
  214. * Convert a relative url into an absolute url, given a base url.
  215. *
  216. * @param buf the buffer where output absolute url is written
  217. * @param size the size of buf
  218. * @param base the base url, may be equal to buf.
  219. * @param rel the new url, which is interpreted relative to base
  220. */
  221. void ff_make_absolute_url(char *buf, int size, const char *base,
  222. const char *rel);
  223. enum AVCodecID ff_guess_image2_codec(const char *filename);
  224. /**
  225. * Convert a date string in ISO8601 format to Unix timestamp.
  226. */
  227. int64_t ff_iso8601_to_unix_time(const char *datestr);
  228. /**
  229. * Perform a binary search using av_index_search_timestamp() and
  230. * AVInputFormat.read_timestamp().
  231. *
  232. * @param target_ts target timestamp in the time base of the given stream
  233. * @param stream_index stream number
  234. */
  235. int ff_seek_frame_binary(AVFormatContext *s, int stream_index,
  236. int64_t target_ts, int flags);
  237. /**
  238. * Update cur_dts of all streams based on the given timestamp and AVStream.
  239. *
  240. * Stream ref_st unchanged, others set cur_dts in their native time base.
  241. * Only needed for timestamp wrapping or if (dts not set and pts!=dts).
  242. * @param timestamp new dts expressed in time_base of param ref_st
  243. * @param ref_st reference stream giving time_base of param timestamp
  244. */
  245. void ff_update_cur_dts(AVFormatContext *s, AVStream *ref_st, int64_t timestamp);
  246. /**
  247. * Perform a binary search using read_timestamp().
  248. *
  249. * @param target_ts target timestamp in the time base of the given stream
  250. * @param stream_index stream number
  251. */
  252. int64_t ff_gen_search(AVFormatContext *s, int stream_index,
  253. int64_t target_ts, int64_t pos_min,
  254. int64_t pos_max, int64_t pos_limit,
  255. int64_t ts_min, int64_t ts_max,
  256. int flags, int64_t *ts_ret,
  257. int64_t (*read_timestamp)(struct AVFormatContext *, int , int64_t *, int64_t ));
  258. /**
  259. * Set the pts for a given stream. If the new values would be invalid
  260. * (<= 0), it leaves the AVStream unchanged.
  261. *
  262. * @param s stream
  263. * @param pts_wrap_bits number of bits effectively used by the pts
  264. * (used for wrap control, 33 is the value for MPEG)
  265. * @param pts_num numerator to convert to seconds (MPEG: 1)
  266. * @param pts_den denominator to convert to seconds (MPEG: 90000)
  267. */
  268. void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits,
  269. unsigned int pts_num, unsigned int pts_den);
  270. /**
  271. * Add side data to a packet for changing parameters to the given values.
  272. * Parameters set to 0 aren't included in the change.
  273. */
  274. int ff_add_param_change(AVPacket *pkt, int32_t channels,
  275. uint64_t channel_layout, int32_t sample_rate,
  276. int32_t width, int32_t height);
  277. /**
  278. * Set the timebase for each stream from the corresponding codec timebase and
  279. * print it.
  280. */
  281. int ff_framehash_write_header(AVFormatContext *s);
  282. /**
  283. * Read a transport packet from a media file.
  284. *
  285. * @param s media file handle
  286. * @param pkt is filled
  287. * @return 0 if OK, AVERROR_xxx on error
  288. */
  289. int ff_read_packet(AVFormatContext *s, AVPacket *pkt);
  290. /**
  291. * Interleave a packet per dts in an output media file.
  292. *
  293. * Packets with pkt->destruct == av_destruct_packet will be freed inside this
  294. * function, so they cannot be used after it. Note that calling av_free_packet()
  295. * on them is still safe.
  296. *
  297. * @param s media file handle
  298. * @param out the interleaved packet will be output here
  299. * @param pkt the input packet
  300. * @param flush 1 if no further packets are available as input and all
  301. * remaining packets should be output
  302. * @return 1 if a packet was output, 0 if no packet could be output,
  303. * < 0 if an error occurred
  304. */
  305. int ff_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out,
  306. AVPacket *pkt, int flush);
  307. void ff_free_stream(AVFormatContext *s, AVStream *st);
  308. #endif /* AVFORMAT_INTERNAL_H */