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.

141 lines
5.3KB

  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. void ff_dynarray_add(intptr_t **tab_ptr, int *nb_ptr, intptr_t elem);
  25. #ifdef __GNUC__
  26. #define dynarray_add(tab, nb_ptr, elem)\
  27. do {\
  28. __typeof__(tab) _tab = (tab);\
  29. __typeof__(elem) _elem = (elem);\
  30. (void)sizeof(**_tab == _elem); /* check that types are compatible */\
  31. ff_dynarray_add((intptr_t **)_tab, nb_ptr, (intptr_t)_elem);\
  32. } while(0)
  33. #else
  34. #define dynarray_add(tab, nb_ptr, elem)\
  35. do {\
  36. ff_dynarray_add((intptr_t **)(tab), nb_ptr, (intptr_t)(elem));\
  37. } while(0)
  38. #endif
  39. time_t mktimegm(struct tm *tm);
  40. struct tm *brktimegm(time_t secs, struct tm *tm);
  41. const char *small_strptime(const char *p, const char *fmt,
  42. struct tm *dt);
  43. char *ff_data_to_hex(char *buf, const uint8_t *src, int size, int lowercase);
  44. void ff_program_add_stream_index(AVFormatContext *ac, int progid, unsigned int idx);
  45. /**
  46. * Add packet to AVFormatContext->packet_buffer list, determining its
  47. * interleaved position using compare() function argument.
  48. */
  49. void ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
  50. int (*compare)(AVFormatContext *, AVPacket *, AVPacket *));
  51. void ff_read_frame_flush(AVFormatContext *s);
  52. #define NTP_OFFSET 2208988800ULL
  53. #define NTP_OFFSET_US (NTP_OFFSET * 1000000ULL)
  54. /** Gets the current time since NTP epoch in microseconds. */
  55. uint64_t ff_ntp_time(void);
  56. /**
  57. * Probes a bytestream to determine the input format. Each time a probe returns
  58. * with a score that is too low, the probe buffer size is increased and another
  59. * attempt is made. When the maximum probe size is reached, the input format
  60. * with the highest score is returned.
  61. *
  62. * @param pb the bytestream to probe, it may be closed and opened again
  63. * @param fmt the input format is put here
  64. * @param filename the filename of the stream
  65. * @param logctx the log context
  66. * @param offset the offset within the bytestream to probe from
  67. * @param max_probe_size the maximum probe buffer size (zero for default)
  68. * @return 0 in case of success, a negative value corresponding to an
  69. * AVERROR code otherwise
  70. */
  71. int ff_probe_input_buffer(ByteIOContext **pb, AVInputFormat **fmt,
  72. const char *filename, void *logctx,
  73. unsigned int offset, unsigned int max_probe_size);
  74. /**
  75. * Splits a URL string into components. To reassemble components back into
  76. * a URL, use ff_url_join instead of using snprintf directly.
  77. *
  78. * The pointers to buffers for storing individual components may be null,
  79. * in order to ignore that component. Buffers for components not found are
  80. * set to empty strings. If the port isn't found, it is set to a negative
  81. * value.
  82. *
  83. * @see ff_url_join
  84. *
  85. * @param proto the buffer for the protocol
  86. * @param proto_size the size of the proto buffer
  87. * @param authorization the buffer for the authorization
  88. * @param authorization_size the size of the authorization buffer
  89. * @param hostname the buffer for the host name
  90. * @param hostname_size the size of the hostname buffer
  91. * @param port_ptr a pointer to store the port number in
  92. * @param path the buffer for the path
  93. * @param path_size the size of the path buffer
  94. * @param url the URL to split
  95. */
  96. void ff_url_split(char *proto, int proto_size,
  97. char *authorization, int authorization_size,
  98. char *hostname, int hostname_size,
  99. int *port_ptr,
  100. char *path, int path_size,
  101. const char *url);
  102. /**
  103. * Assembles a URL string from components. This is the reverse operation
  104. * of ff_url_split.
  105. *
  106. * Note, this requires networking to be initialized, so the caller must
  107. * ensure ff_network_init has been called.
  108. *
  109. * @see ff_url_split
  110. *
  111. * @param str the buffer to fill with the url
  112. * @param size the size of the str buffer
  113. * @param proto the protocol identifier, if null, the separator
  114. * after the identifier is left out, too
  115. * @param authorization an optional authorization string, may be null
  116. * @param hostname the host name string
  117. * @param port the port number, left out from the string if negative
  118. * @param fmt a generic format string for everything to add after the
  119. * host/port, may be null
  120. * @return the number of characters written to the destination buffer
  121. */
  122. int ff_url_join(char *str, int size, const char *proto,
  123. const char *authorization, const char *hostname,
  124. int port, const char *fmt, ...);
  125. #endif /* AVFORMAT_INTERNAL_H */