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.

161 lines
5.9KB

  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. typedef struct AVCodecTag {
  25. enum CodecID id;
  26. unsigned int tag;
  27. } AVCodecTag;
  28. void ff_dynarray_add(intptr_t **tab_ptr, int *nb_ptr, intptr_t elem);
  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. ff_dynarray_add((intptr_t **)_tab, nb_ptr, (intptr_t)_elem);\
  36. } while(0)
  37. #else
  38. #define dynarray_add(tab, nb_ptr, elem)\
  39. do {\
  40. ff_dynarray_add((intptr_t **)(tab), nb_ptr, (intptr_t)(elem));\
  41. } while(0)
  42. #endif
  43. time_t mktimegm(struct tm *tm);
  44. struct tm *brktimegm(time_t secs, struct tm *tm);
  45. const char *small_strptime(const char *p, const char *fmt,
  46. struct tm *dt);
  47. char *ff_data_to_hex(char *buf, const uint8_t *src, int size, int lowercase);
  48. void ff_program_add_stream_index(AVFormatContext *ac, int progid, unsigned int idx);
  49. /**
  50. * Add packet to AVFormatContext->packet_buffer list, determining its
  51. * interleaved position using compare() function argument.
  52. */
  53. void ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
  54. int (*compare)(AVFormatContext *, AVPacket *, AVPacket *));
  55. void ff_read_frame_flush(AVFormatContext *s);
  56. #define NTP_OFFSET 2208988800ULL
  57. #define NTP_OFFSET_US (NTP_OFFSET * 1000000ULL)
  58. /** Get the current time since NTP epoch in microseconds. */
  59. uint64_t ff_ntp_time(void);
  60. /**
  61. * Probe a bytestream to determine the input format. Each time a probe returns
  62. * with a score that is too low, the probe buffer size is increased and another
  63. * attempt is made. When the maximum probe size is reached, the input format
  64. * with the highest score is returned.
  65. *
  66. * @param pb the bytestream to probe, it may be closed and opened again
  67. * @param fmt the input format is put here
  68. * @param filename the filename of the stream
  69. * @param logctx the log context
  70. * @param offset the offset within the bytestream to probe from
  71. * @param max_probe_size the maximum probe buffer size (zero for default)
  72. * @return 0 in case of success, a negative value corresponding to an
  73. * AVERROR code otherwise
  74. */
  75. int ff_probe_input_buffer(ByteIOContext **pb, AVInputFormat **fmt,
  76. const char *filename, void *logctx,
  77. unsigned int offset, unsigned int max_probe_size);
  78. #if LIBAVFORMAT_VERSION_MAJOR < 53
  79. /**
  80. * @deprecated use av_url_split() instead
  81. */
  82. void ff_url_split(char *proto, int proto_size,
  83. char *authorization, int authorization_size,
  84. char *hostname, int hostname_size,
  85. int *port_ptr,
  86. char *path, int path_size,
  87. const char *url);
  88. #endif
  89. /**
  90. * Assemble a URL string from components. This is the reverse operation
  91. * of av_url_split.
  92. *
  93. * Note, this requires networking to be initialized, so the caller must
  94. * ensure ff_network_init has been called.
  95. *
  96. * @see av_url_split
  97. *
  98. * @param str the buffer to fill with the url
  99. * @param size the size of the str buffer
  100. * @param proto the protocol identifier, if null, the separator
  101. * after the identifier is left out, too
  102. * @param authorization an optional authorization string, may be null.
  103. * An empty string is treated the same as a null string.
  104. * @param hostname the host name string
  105. * @param port the port number, left out from the string if negative
  106. * @param fmt a generic format string for everything to add after the
  107. * host/port, may be null
  108. * @return the number of characters written to the destination buffer
  109. */
  110. int ff_url_join(char *str, int size, const char *proto,
  111. const char *authorization, const char *hostname,
  112. int port, const char *fmt, ...);
  113. /**
  114. * Append the media-specific SDP fragment for the media stream c
  115. * to the buffer buff.
  116. *
  117. * Note, the buffer needs to be initialized, since it is appended to
  118. * existing content.
  119. *
  120. * @param buff the buffer to append the SDP fragment to
  121. * @param size the size of the buff buffer
  122. * @param c the AVCodecContext of the media to describe
  123. * @param dest_addr the destination address of the media stream, may be NULL
  124. * @param port the destination port of the media stream, 0 if unknown
  125. * @param ttl the time to live of the stream, 0 if not multicast
  126. */
  127. void ff_sdp_write_media(char *buff, int size, AVCodecContext *c,
  128. const char *dest_addr, int port, int ttl);
  129. /**
  130. * Write a packet to another muxer than the one the user originally
  131. * intended. Useful when chaining muxers, where one muxer internally
  132. * writes a received packet to another muxer.
  133. *
  134. * @param dst the muxer to write the packet to
  135. * @param dst_stream the stream index within dst to write the packet to
  136. * @param pkt the packet to be written
  137. * @param src the muxer the packet originally was intended for
  138. * @return the value av_write_frame returned
  139. */
  140. int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt,
  141. AVFormatContext *src);
  142. #endif /* AVFORMAT_INTERNAL_H */