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.

116 lines
4.5KB

  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. char *ff_data_to_hex(char *buf, const uint8_t *src, int size);
  25. void av_program_add_stream_index(AVFormatContext *ac, int progid, unsigned int idx);
  26. /**
  27. * Add packet to AVFormatContext->packet_buffer list, determining its
  28. * interleaved position using compare() function argument.
  29. */
  30. void ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
  31. int (*compare)(AVFormatContext *, AVPacket *, AVPacket *));
  32. void av_read_frame_flush(AVFormatContext *s);
  33. /** Gets the current time since NTP epoch in microseconds. */
  34. uint64_t ff_ntp_time(void);
  35. /**
  36. * Probes a bytestream to determine the input format. Each time a probe returns
  37. * with a score that is too low, the probe buffer size is increased and another
  38. * attempt is made. When the maximum probe size is reached, the input format
  39. * with the highest score is returned.
  40. *
  41. * @param pb the bytestream to probe, it may be closed and opened again
  42. * @param fmt the input format is put here
  43. * @param filename the filename of the stream
  44. * @param logctx the log context
  45. * @param offset the offset within the bytestream to probe from
  46. * @param max_probe_size the maximum probe buffer size (zero for default)
  47. * @return 0 in case of success, a negative value corresponding to an
  48. * AVERROR code otherwise
  49. */
  50. int ff_probe_input_buffer(ByteIOContext **pb, AVInputFormat **fmt,
  51. const char *filename, void *logctx,
  52. unsigned int offset, unsigned int max_probe_size);
  53. /**
  54. * Splits a URL string into components. To reassemble components back into
  55. * a URL, use ff_url_join instead of using snprintf directly.
  56. *
  57. * The pointers to buffers for storing individual components may be null,
  58. * in order to ignore that component. Buffers for components not found are
  59. * set to empty strings. If the port isn't found, it is set to a negative
  60. * value.
  61. *
  62. * @see ff_url_join
  63. *
  64. * @param proto the buffer for the protocol
  65. * @param proto_size the size of the proto buffer
  66. * @param authorization the buffer for the authorization
  67. * @param authorization_size the size of the authorization buffer
  68. * @param hostname the buffer for the host name
  69. * @param hostname_size the size of the hostname buffer
  70. * @param port_ptr a pointer to store the port number in
  71. * @param path the buffer for the path
  72. * @param path_size the size of the path buffer
  73. * @param url the URL to split
  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. /**
  82. * Assembles a URL string from components. This is the reverse operation
  83. * of ff_url_split.
  84. *
  85. * Note, this requires networking to be initialized, so the caller must
  86. * ensure ff_network_init has been called.
  87. *
  88. * @see ff_url_split
  89. *
  90. * @param str the buffer to fill with the url
  91. * @param size the size of the str buffer
  92. * @param proto the protocol identifier, if null, the separator
  93. * after the identifier is left out, too
  94. * @param authorization an optional authorization string, may be null
  95. * @param hostname the host name string
  96. * @param port the port number, left out from the string if negative
  97. * @param fmt a generic format string for everything to add after the
  98. * host/port, may be null
  99. * @return the number of characters written to the destination buffer
  100. */
  101. int ff_url_join(char *str, int size, const char *proto,
  102. const char *authorization, const char *hostname,
  103. int port, const char *fmt, ...);
  104. #endif /* AVFORMAT_INTERNAL_H */