annotate internal.h @ 5853:cf00e196666a libavformat

rename av_read_frame_flush to ff_read_frame_flush it is an internal function, not part of public API
author aurel
date Mon, 15 Mar 2010 23:15:24 +0000
parents 36b46032fad5
children fd37c39041cd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3788
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
1 /*
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
2 * copyright (c) 2001 Fabrice Bellard
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
3 *
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
4 * This file is part of FFmpeg.
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
5 *
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
6 * FFmpeg is free software; you can redistribute it and/or
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
7 * modify it under the terms of the GNU Lesser General Public
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
8 * License as published by the Free Software Foundation; either
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
9 * version 2.1 of the License, or (at your option) any later version.
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
10 *
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
11 * FFmpeg is distributed in the hope that it will be useful,
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
14 * Lesser General Public License for more details.
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
15 *
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
16 * You should have received a copy of the GNU Lesser General Public
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
17 * License along with FFmpeg; if not, write to the Free Software
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
19 */
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
20
3852
1b6245500d8c Globally rename the header inclusion guard names.
stefano
parents: 3788
diff changeset
21 #ifndef AVFORMAT_INTERNAL_H
1b6245500d8c Globally rename the header inclusion guard names.
stefano
parents: 3788
diff changeset
22 #define AVFORMAT_INTERNAL_H
3788
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
23
3981
ff78dd8e198a Fix 'make checkheaders', based on a patch by Diego Petten, flameeyes gmail com.
diego
parents: 3852
diff changeset
24 #include <stdint.h>
4059
59db9e761b38 Move declaration of av_set_program_name and av_program_add_stream_index
diego
parents: 3981
diff changeset
25 #include "avformat.h"
3981
ff78dd8e198a Fix 'make checkheaders', based on a patch by Diego Petten, flameeyes gmail com.
diego
parents: 3852
diff changeset
26
3788
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
27 char *ff_data_to_hex(char *buf, const uint8_t *src, int size);
ca6df1ecb412 Export data_to_hex() as private API in lavf, rename to ff_data_to_hex() and
rbultje
parents:
diff changeset
28
5852
36b46032fad5 rename av_program_add_stream_index to ff_program_add_stream_index
aurel
parents: 5841
diff changeset
29 void ff_program_add_stream_index(AVFormatContext *ac, int progid, unsigned int idx);
4059
59db9e761b38 Move declaration of av_set_program_name and av_program_add_stream_index
diego
parents: 3981
diff changeset
30
4418
d5119d75439d Move declaration of ff_interleave_add_packet to internal.h.
bcoudurier
parents: 4059
diff changeset
31 /**
d5119d75439d Move declaration of ff_interleave_add_packet to internal.h.
bcoudurier
parents: 4059
diff changeset
32 * Add packet to AVFormatContext->packet_buffer list, determining its
d5119d75439d Move declaration of ff_interleave_add_packet to internal.h.
bcoudurier
parents: 4059
diff changeset
33 * interleaved position using compare() function argument.
d5119d75439d Move declaration of ff_interleave_add_packet to internal.h.
bcoudurier
parents: 4059
diff changeset
34 */
d5119d75439d Move declaration of ff_interleave_add_packet to internal.h.
bcoudurier
parents: 4059
diff changeset
35 void ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
d5119d75439d Move declaration of ff_interleave_add_packet to internal.h.
bcoudurier
parents: 4059
diff changeset
36 int (*compare)(AVFormatContext *, AVPacket *, AVPacket *));
d5119d75439d Move declaration of ff_interleave_add_packet to internal.h.
bcoudurier
parents: 4059
diff changeset
37
5853
cf00e196666a rename av_read_frame_flush to ff_read_frame_flush
aurel
parents: 5852
diff changeset
38 void ff_read_frame_flush(AVFormatContext *s);
5761
058a0e362dbe Move av_read_frame_flush() prototype to lavf/internal.h
mru
parents: 4428
diff changeset
39
5841
ba41d3865253 Move the NTP offset definitions to internal.h
mstorsjo
parents: 5837
diff changeset
40 #define NTP_OFFSET 2208988800ULL
ba41d3865253 Move the NTP offset definitions to internal.h
mstorsjo
parents: 5837
diff changeset
41 #define NTP_OFFSET_US (NTP_OFFSET * 1000000ULL)
ba41d3865253 Move the NTP offset definitions to internal.h
mstorsjo
parents: 5837
diff changeset
42
5807
f4ca0041b4f4 Make the ntp_time function available to other parts of libavformat, as ff_ntp_time
mstorsjo
parents: 5774
diff changeset
43 /** Gets the current time since NTP epoch in microseconds. */
f4ca0041b4f4 Make the ntp_time function available to other parts of libavformat, as ff_ntp_time
mstorsjo
parents: 5774
diff changeset
44 uint64_t ff_ntp_time(void);
f4ca0041b4f4 Make the ntp_time function available to other parts of libavformat, as ff_ntp_time
mstorsjo
parents: 5774
diff changeset
45
5836
2997c88028cd Move the probe loop from av_open_input_file() into its own method
stefano
parents: 5807
diff changeset
46 /**
2997c88028cd Move the probe loop from av_open_input_file() into its own method
stefano
parents: 5807
diff changeset
47 * Probes a bytestream to determine the input format. Each time a probe returns
2997c88028cd Move the probe loop from av_open_input_file() into its own method
stefano
parents: 5807
diff changeset
48 * with a score that is too low, the probe buffer size is increased and another
2997c88028cd Move the probe loop from av_open_input_file() into its own method
stefano
parents: 5807
diff changeset
49 * attempt is made. When the maximum probe size is reached, the input format
2997c88028cd Move the probe loop from av_open_input_file() into its own method
stefano
parents: 5807
diff changeset
50 * with the highest score is returned.
2997c88028cd Move the probe loop from av_open_input_file() into its own method
stefano
parents: 5807
diff changeset
51 *
2997c88028cd Move the probe loop from av_open_input_file() into its own method
stefano
parents: 5807
diff changeset
52 * @param pb the bytestream to probe, it may be closed and opened again
2997c88028cd Move the probe loop from av_open_input_file() into its own method
stefano
parents: 5807
diff changeset
53 * @param fmt the input format is put here
2997c88028cd Move the probe loop from av_open_input_file() into its own method
stefano
parents: 5807
diff changeset
54 * @param filename the filename of the stream
2997c88028cd Move the probe loop from av_open_input_file() into its own method
stefano
parents: 5807
diff changeset
55 * @param logctx the log context
2997c88028cd Move the probe loop from av_open_input_file() into its own method
stefano
parents: 5807
diff changeset
56 * @param offset the offset within the bytestream to probe from
2997c88028cd Move the probe loop from av_open_input_file() into its own method
stefano
parents: 5807
diff changeset
57 * @param max_probe_size the maximum probe buffer size (zero for default)
2997c88028cd Move the probe loop from av_open_input_file() into its own method
stefano
parents: 5807
diff changeset
58 * @return 0 in case of success, a negative value corresponding to an
2997c88028cd Move the probe loop from av_open_input_file() into its own method
stefano
parents: 5807
diff changeset
59 * AVERROR code otherwise
2997c88028cd Move the probe loop from av_open_input_file() into its own method
stefano
parents: 5807
diff changeset
60 */
2997c88028cd Move the probe loop from av_open_input_file() into its own method
stefano
parents: 5807
diff changeset
61 int ff_probe_input_buffer(ByteIOContext **pb, AVInputFormat **fmt,
2997c88028cd Move the probe loop from av_open_input_file() into its own method
stefano
parents: 5807
diff changeset
62 const char *filename, void *logctx,
2997c88028cd Move the probe loop from av_open_input_file() into its own method
stefano
parents: 5807
diff changeset
63 unsigned int offset, unsigned int max_probe_size);
2997c88028cd Move the probe loop from av_open_input_file() into its own method
stefano
parents: 5807
diff changeset
64
5837
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
65 /**
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
66 * Splits a URL string into components. To reassemble components back into
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
67 * a URL, use ff_url_join instead of using snprintf directly.
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
68 *
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
69 * The pointers to buffers for storing individual components may be null,
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
70 * in order to ignore that component. Buffers for components not found are
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
71 * set to empty strings. If the port isn't found, it is set to a negative
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
72 * value.
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
73 *
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
74 * @see ff_url_join
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
75 *
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
76 * @param proto the buffer for the protocol
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
77 * @param proto_size the size of the proto buffer
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
78 * @param authorization the buffer for the authorization
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
79 * @param authorization_size the size of the authorization buffer
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
80 * @param hostname the buffer for the host name
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
81 * @param hostname_size the size of the hostname buffer
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
82 * @param port_ptr a pointer to store the port number in
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
83 * @param path the buffer for the path
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
84 * @param path_size the size of the path buffer
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
85 * @param url the URL to split
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
86 */
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
87 void ff_url_split(char *proto, int proto_size,
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
88 char *authorization, int authorization_size,
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
89 char *hostname, int hostname_size,
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
90 int *port_ptr,
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
91 char *path, int path_size,
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
92 const char *url);
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
93
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
94 /**
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
95 * Assembles a URL string from components. This is the reverse operation
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
96 * of ff_url_split.
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
97 *
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
98 * Note, this requires networking to be initialized, so the caller must
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
99 * ensure ff_network_init has been called.
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
100 *
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
101 * @see ff_url_split
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
102 *
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
103 * @param str the buffer to fill with the url
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
104 * @param size the size of the str buffer
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
105 * @param proto the protocol identifier, if null, the separator
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
106 * after the identifier is left out, too
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
107 * @param authorization an optional authorization string, may be null
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
108 * @param hostname the host name string
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
109 * @param port the port number, left out from the string if negative
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
110 * @param fmt a generic format string for everything to add after the
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
111 * host/port, may be null
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
112 * @return the number of characters written to the destination buffer
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
113 */
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
114 int ff_url_join(char *str, int size, const char *proto,
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
115 const char *authorization, const char *hostname,
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
116 int port, const char *fmt, ...);
d605f589f0be move ff_url_split() and ff_url_join() declarations to internal.h
aurel
parents: 5836
diff changeset
117
3852
1b6245500d8c Globally rename the header inclusion guard names.
stefano
parents: 3788
diff changeset
118 #endif /* AVFORMAT_INTERNAL_H */