/src/ffmpeg/libavformat/demux.h
Line | Count | Source |
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 | | |
21 | | #ifndef AVFORMAT_DEMUX_H |
22 | | #define AVFORMAT_DEMUX_H |
23 | | |
24 | | #include <stdint.h> |
25 | | #include "libavutil/rational.h" |
26 | | #include "libavcodec/packet.h" |
27 | | #include "avformat.h" |
28 | | |
29 | | struct AVDeviceInfoList; |
30 | | |
31 | | /** |
32 | | * For an FFInputFormat with this flag set read_close() needs to be called |
33 | | * by the caller upon read_header() failure. |
34 | | */ |
35 | 247k | #define FF_INFMT_FLAG_INIT_CLEANUP (1 << 0) |
36 | | |
37 | | /* |
38 | | * Prefer the codec framerate for avg_frame_rate computation. |
39 | | */ |
40 | 20.6M | #define FF_INFMT_FLAG_PREFER_CODEC_FRAMERATE (1 << 1) |
41 | | |
42 | | /** |
43 | | * Automatically parse ID3v2 metadata |
44 | | */ |
45 | 1.07M | #define FF_INFMT_FLAG_ID3V2_AUTO (1 << 2) |
46 | | |
47 | | typedef struct FFInputFormat { |
48 | | /** |
49 | | * The public AVInputFormat. See avformat.h for it. |
50 | | */ |
51 | | AVInputFormat p; |
52 | | |
53 | | /** |
54 | | * Raw demuxers store their codec ID here. |
55 | | */ |
56 | | enum AVCodecID raw_codec_id; |
57 | | |
58 | | /** |
59 | | * Size of private data so that it can be allocated in the wrapper. |
60 | | */ |
61 | | int priv_data_size; |
62 | | |
63 | | /** |
64 | | * Internal flags. See FF_INFMT_FLAG_* above and FF_FMT_FLAG_* in internal.h. |
65 | | */ |
66 | | int flags_internal; |
67 | | |
68 | | /** |
69 | | * Tell if a given file has a chance of being parsed as this format. |
70 | | * The buffer provided is guaranteed to be AVPROBE_PADDING_SIZE bytes |
71 | | * big so you do not have to check for that unless you need more. |
72 | | */ |
73 | | int (*read_probe)(const AVProbeData *); |
74 | | |
75 | | /** |
76 | | * Read the format header and initialize the AVFormatContext |
77 | | * structure. Return 0 if OK. 'avformat_new_stream' should be |
78 | | * called to create new streams. |
79 | | */ |
80 | | int (*read_header)(struct AVFormatContext *); |
81 | | |
82 | | /** |
83 | | * Read one packet and put it in 'pkt'. pts and flags are also |
84 | | * set. 'avformat_new_stream' can be called only if the flag |
85 | | * AVFMTCTX_NOHEADER is used and only in the calling thread (not in a |
86 | | * background thread). |
87 | | * @return 0 on success, < 0 on error. |
88 | | * Upon returning an error, pkt must be unreferenced by the caller. |
89 | | */ |
90 | | int (*read_packet)(struct AVFormatContext *, AVPacket *pkt); |
91 | | |
92 | | /** |
93 | | * Close the stream. The AVFormatContext and AVStreams are not |
94 | | * freed by this function |
95 | | */ |
96 | | int (*read_close)(struct AVFormatContext *); |
97 | | |
98 | | /** |
99 | | * Seek to a given timestamp relative to the frames in |
100 | | * stream component stream_index. |
101 | | * @param stream_index Must not be -1. |
102 | | * @param flags Selects which direction should be preferred if no exact |
103 | | * match is available. |
104 | | * @return >= 0 on success (but not necessarily the new offset) |
105 | | */ |
106 | | int (*read_seek)(struct AVFormatContext *, |
107 | | int stream_index, int64_t timestamp, int flags); |
108 | | |
109 | | /** |
110 | | * Get the next timestamp in stream[stream_index].time_base units. |
111 | | * @return the timestamp or AV_NOPTS_VALUE if an error occurred |
112 | | */ |
113 | | int64_t (*read_timestamp)(struct AVFormatContext *s, int stream_index, |
114 | | int64_t *pos, int64_t pos_limit); |
115 | | |
116 | | /** |
117 | | * Start/resume playing - only meaningful if using a network-based format |
118 | | * (RTSP). |
119 | | */ |
120 | | int (*read_play)(struct AVFormatContext *); |
121 | | |
122 | | /** |
123 | | * Pause playing - only meaningful if using a network-based format |
124 | | * (RTSP). |
125 | | */ |
126 | | int (*read_pause)(struct AVFormatContext *); |
127 | | |
128 | | /** |
129 | | * Seek to timestamp ts. |
130 | | * Seeking will be done so that the point from which all active streams |
131 | | * can be presented successfully will be closest to ts and within min/max_ts. |
132 | | * Active streams are all streams that have AVStream.discard < AVDISCARD_ALL. |
133 | | */ |
134 | | int (*read_seek2)(struct AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags); |
135 | | |
136 | | /** |
137 | | * Returns device list with it properties. |
138 | | * @see avdevice_list_devices() for more details. |
139 | | */ |
140 | | int (*get_device_list)(struct AVFormatContext *s, struct AVDeviceInfoList *device_list); |
141 | | } FFInputFormat; |
142 | | |
143 | | static inline const FFInputFormat *ffifmt(const AVInputFormat *fmt) |
144 | 899M | { |
145 | 899M | return (const FFInputFormat*)fmt; |
146 | 899M | } Unexecuted instantiation: target_dem_fuzzer.c:ffifmt Unexecuted instantiation: allformats.c:ffifmt Unexecuted instantiation: alp.c:ffifmt Unexecuted instantiation: amr.c:ffifmt Unexecuted instantiation: anm.c:ffifmt Unexecuted instantiation: apac.c:ffifmt Unexecuted instantiation: apc.c:ffifmt Unexecuted instantiation: ape.c:ffifmt Unexecuted instantiation: apetag.c:ffifmt Unexecuted instantiation: apm.c:ffifmt Unexecuted instantiation: apngdec.c:ffifmt Unexecuted instantiation: aptxdec.c:ffifmt Unexecuted instantiation: apvdec.c:ffifmt Unexecuted instantiation: aqtitledec.c:ffifmt Unexecuted instantiation: argo_asf.c:ffifmt Unexecuted instantiation: argo_brp.c:ffifmt Unexecuted instantiation: argo_cvg.c:ffifmt Unexecuted instantiation: asfdec_f.c:ffifmt Unexecuted instantiation: asfdec_o.c:ffifmt Unexecuted instantiation: assdec.c:ffifmt Unexecuted instantiation: astdec.c:ffifmt Unexecuted instantiation: au.c:ffifmt Unexecuted instantiation: av1dec.c:ffifmt Unexecuted instantiation: avformat.c:ffifmt Unexecuted instantiation: avidec.c:ffifmt Unexecuted instantiation: avr.c:ffifmt Unexecuted instantiation: avs.c:ffifmt Unexecuted instantiation: avs2dec.c:ffifmt Unexecuted instantiation: avs3dec.c:ffifmt Unexecuted instantiation: bethsoftvid.c:ffifmt Unexecuted instantiation: bfi.c:ffifmt Unexecuted instantiation: bink.c:ffifmt Unexecuted instantiation: binka.c:ffifmt Unexecuted instantiation: bintext.c:ffifmt Unexecuted instantiation: bit.c:ffifmt Unexecuted instantiation: bmv.c:ffifmt Unexecuted instantiation: boadec.c:ffifmt Unexecuted instantiation: bonk.c:ffifmt Unexecuted instantiation: brstm.c:ffifmt Unexecuted instantiation: c93.c:ffifmt Unexecuted instantiation: cafdec.c:ffifmt Unexecuted instantiation: cavsvideodec.c:ffifmt Unexecuted instantiation: cdg.c:ffifmt Unexecuted instantiation: cdxl.c:ffifmt Unexecuted instantiation: cinedec.c:ffifmt Unexecuted instantiation: codec2.c:ffifmt Unexecuted instantiation: concatdec.c:ffifmt Unexecuted instantiation: dashdec.c:ffifmt Unexecuted instantiation: dauddec.c:ffifmt Unexecuted instantiation: dcstr.c:ffifmt Line | Count | Source | 144 | 254M | { | 145 | 254M | return (const FFInputFormat*)fmt; | 146 | 254M | } |
Unexecuted instantiation: demux_utils.c:ffifmt Unexecuted instantiation: derf.c:ffifmt Unexecuted instantiation: dfa.c:ffifmt Unexecuted instantiation: dfpwmdec.c:ffifmt Unexecuted instantiation: dhav.c:ffifmt Unexecuted instantiation: diracdec.c:ffifmt Unexecuted instantiation: dnxhddec.c:ffifmt Unexecuted instantiation: dsfdec.c:ffifmt Unexecuted instantiation: dsicin.c:ffifmt Unexecuted instantiation: dss.c:ffifmt Unexecuted instantiation: dtsdec.c:ffifmt Unexecuted instantiation: dtshddec.c:ffifmt Unexecuted instantiation: dv.c:ffifmt Unexecuted instantiation: dvbsub.c:ffifmt Unexecuted instantiation: dvbtxt.c:ffifmt Unexecuted instantiation: dxa.c:ffifmt Unexecuted instantiation: eacdata.c:ffifmt Unexecuted instantiation: electronicarts.c:ffifmt Unexecuted instantiation: epafdec.c:ffifmt Unexecuted instantiation: evcdec.c:ffifmt Unexecuted instantiation: ffmetadec.c:ffifmt Unexecuted instantiation: filmstripdec.c:ffifmt Unexecuted instantiation: fitsdec.c:ffifmt Unexecuted instantiation: flacdec.c:ffifmt Unexecuted instantiation: flic.c:ffifmt Unexecuted instantiation: flvdec.c:ffifmt Line | Count | Source | 144 | 638M | { | 145 | 638M | return (const FFInputFormat*)fmt; | 146 | 638M | } |
Unexecuted instantiation: frmdec.c:ffifmt Unexecuted instantiation: fsb.c:ffifmt Unexecuted instantiation: fwse.c:ffifmt Unexecuted instantiation: g722.c:ffifmt Unexecuted instantiation: g723_1.c:ffifmt Line | Count | Source | 144 | 1.66k | { | 145 | 1.66k | return (const FFInputFormat*)fmt; | 146 | 1.66k | } |
Line | Count | Source | 144 | 855 | { | 145 | 855 | return (const FFInputFormat*)fmt; | 146 | 855 | } |
Unexecuted instantiation: g729dec.c:ffifmt Unexecuted instantiation: gdv.c:ffifmt Unexecuted instantiation: genh.c:ffifmt Unexecuted instantiation: gifdec.c:ffifmt Unexecuted instantiation: gsmdec.c:ffifmt Unexecuted instantiation: gxf.c:ffifmt Unexecuted instantiation: h261dec.c:ffifmt Unexecuted instantiation: h263dec.c:ffifmt Unexecuted instantiation: h264dec.c:ffifmt Unexecuted instantiation: hca.c:ffifmt Unexecuted instantiation: hcom.c:ffifmt Unexecuted instantiation: hevcdec.c:ffifmt Unexecuted instantiation: hls.c:ffifmt Unexecuted instantiation: hnm.c:ffifmt Unexecuted instantiation: hxvs.c:ffifmt Unexecuted instantiation: iamfdec.c:ffifmt Unexecuted instantiation: icodec.c:ffifmt Unexecuted instantiation: id3v2.c:ffifmt Unexecuted instantiation: idcin.c:ffifmt Unexecuted instantiation: idroqdec.c:ffifmt Unexecuted instantiation: iff.c:ffifmt Unexecuted instantiation: ifv.c:ffifmt Unexecuted instantiation: ilbc.c:ffifmt Unexecuted instantiation: imfdec.c:ffifmt Unexecuted instantiation: img2_alias_pix.c:ffifmt Unexecuted instantiation: img2_brender_pix.c:ffifmt Line | Count | Source | 144 | 7.01M | { | 145 | 7.01M | return (const FFInputFormat*)fmt; | 146 | 7.01M | } |
Unexecuted instantiation: imx.c:ffifmt Unexecuted instantiation: ingenientdec.c:ffifmt Unexecuted instantiation: ipmovie.c:ffifmt Unexecuted instantiation: ipudec.c:ffifmt Unexecuted instantiation: ircamdec.c:ffifmt Unexecuted instantiation: isom.c:ffifmt Unexecuted instantiation: iss.c:ffifmt Unexecuted instantiation: iv8.c:ffifmt Unexecuted instantiation: ivfdec.c:ffifmt Unexecuted instantiation: jacosubdec.c:ffifmt Unexecuted instantiation: jpegxl_anim_dec.c:ffifmt Unexecuted instantiation: jvdec.c:ffifmt Unexecuted instantiation: kvag.c:ffifmt Unexecuted instantiation: lafdec.c:ffifmt Unexecuted instantiation: lc3.c:ffifmt Unexecuted instantiation: lmlm4.c:ffifmt Unexecuted instantiation: loasdec.c:ffifmt Unexecuted instantiation: lrcdec.c:ffifmt Unexecuted instantiation: luodatdec.c:ffifmt Unexecuted instantiation: lvfdec.c:ffifmt Unexecuted instantiation: lxfdec.c:ffifmt Unexecuted instantiation: m4vdec.c:ffifmt Unexecuted instantiation: matroskadec.c:ffifmt Unexecuted instantiation: mca.c:ffifmt Unexecuted instantiation: mccdec.c:ffifmt Unexecuted instantiation: mgsts.c:ffifmt Unexecuted instantiation: microdvddec.c:ffifmt Unexecuted instantiation: mj2kdec.c:ffifmt Unexecuted instantiation: mlpdec.c:ffifmt Unexecuted instantiation: mlvdec.c:ffifmt Unexecuted instantiation: mm.c:ffifmt Unexecuted instantiation: mmf.c:ffifmt Unexecuted instantiation: mods.c:ffifmt Unexecuted instantiation: moflex.c:ffifmt Unexecuted instantiation: mov.c:ffifmt Unexecuted instantiation: mp3dec.c:ffifmt Unexecuted instantiation: mpc.c:ffifmt Unexecuted instantiation: mpc8.c:ffifmt Unexecuted instantiation: mpeg.c:ffifmt Unexecuted instantiation: mpegts.c:ffifmt Unexecuted instantiation: mpegvideodec.c:ffifmt Unexecuted instantiation: mpjpegdec.c:ffifmt Unexecuted instantiation: mpl2dec.c:ffifmt Unexecuted instantiation: mpsubdec.c:ffifmt Unexecuted instantiation: msf.c:ffifmt Unexecuted instantiation: msnwc_tcp.c:ffifmt Unexecuted instantiation: mspdec.c:ffifmt Unexecuted instantiation: mtaf.c:ffifmt Unexecuted instantiation: mtv.c:ffifmt Unexecuted instantiation: musx.c:ffifmt Unexecuted instantiation: mvdec.c:ffifmt Unexecuted instantiation: mvi.c:ffifmt Unexecuted instantiation: mxfdec.c:ffifmt Unexecuted instantiation: mxg.c:ffifmt Unexecuted instantiation: ncdec.c:ffifmt Unexecuted instantiation: nistspheredec.c:ffifmt Unexecuted instantiation: nspdec.c:ffifmt Unexecuted instantiation: nsvdec.c:ffifmt Unexecuted instantiation: nutdec.c:ffifmt Unexecuted instantiation: nuv.c:ffifmt Unexecuted instantiation: oggdec.c:ffifmt Unexecuted instantiation: oggparsevorbis.c:ffifmt Unexecuted instantiation: omadec.c:ffifmt Unexecuted instantiation: options.c:ffifmt Unexecuted instantiation: osq.c:ffifmt Unexecuted instantiation: paf.c:ffifmt Line | Count | Source | 144 | 12.3k | { | 145 | 12.3k | return (const FFInputFormat*)fmt; | 146 | 12.3k | } |
Unexecuted instantiation: pdvdec.c:ffifmt Unexecuted instantiation: pjsdec.c:ffifmt Unexecuted instantiation: pmpdec.c:ffifmt Unexecuted instantiation: pp_bnk.c:ffifmt Unexecuted instantiation: psxstr.c:ffifmt Unexecuted instantiation: pva.c:ffifmt Unexecuted instantiation: pvfdec.c:ffifmt Unexecuted instantiation: qcp.c:ffifmt Unexecuted instantiation: qoadec.c:ffifmt Unexecuted instantiation: r3d.c:ffifmt Line | Count | Source | 144 | 44.5k | { | 145 | 44.5k | return (const FFInputFormat*)fmt; | 146 | 44.5k | } |
Line | Count | Source | 144 | 1.15k | { | 145 | 1.15k | return (const FFInputFormat*)fmt; | 146 | 1.15k | } |
Unexecuted instantiation: rcwtdec.c:ffifmt Unexecuted instantiation: realtextdec.c:ffifmt Unexecuted instantiation: redspark.c:ffifmt Unexecuted instantiation: riffdec.c:ffifmt Unexecuted instantiation: rka.c:ffifmt Unexecuted instantiation: rl2.c:ffifmt Unexecuted instantiation: rmdec.c:ffifmt Unexecuted instantiation: rpl.c:ffifmt Unexecuted instantiation: rsd.c:ffifmt Unexecuted instantiation: rsodec.c:ffifmt Unexecuted instantiation: s337m.c:ffifmt Unexecuted instantiation: samidec.c:ffifmt Unexecuted instantiation: sbcdec.c:ffifmt Unexecuted instantiation: sbgdec.c:ffifmt Unexecuted instantiation: sccdec.c:ffifmt Unexecuted instantiation: scd.c:ffifmt Unexecuted instantiation: sdns.c:ffifmt Unexecuted instantiation: sdr2.c:ffifmt Unexecuted instantiation: sdsdec.c:ffifmt Unexecuted instantiation: sdxdec.c:ffifmt Unexecuted instantiation: seek.c:ffifmt Unexecuted instantiation: segafilm.c:ffifmt Unexecuted instantiation: serdec.c:ffifmt Unexecuted instantiation: sga.c:ffifmt Unexecuted instantiation: shortendec.c:ffifmt Unexecuted instantiation: sierravmd.c:ffifmt Unexecuted instantiation: siff.c:ffifmt Unexecuted instantiation: smacker.c:ffifmt Unexecuted instantiation: smjpegdec.c:ffifmt Unexecuted instantiation: smush.c:ffifmt Unexecuted instantiation: sol.c:ffifmt Unexecuted instantiation: soxdec.c:ffifmt Unexecuted instantiation: spdifdec.c:ffifmt Unexecuted instantiation: srtdec.c:ffifmt Unexecuted instantiation: stldec.c:ffifmt Unexecuted instantiation: subviewer1dec.c:ffifmt Unexecuted instantiation: subviewerdec.c:ffifmt Unexecuted instantiation: supdec.c:ffifmt Unexecuted instantiation: svag.c:ffifmt Unexecuted instantiation: svs.c:ffifmt Unexecuted instantiation: swfdec.c:ffifmt Unexecuted instantiation: takdec.c:ffifmt Unexecuted instantiation: tedcaptionsdec.c:ffifmt Unexecuted instantiation: thp.c:ffifmt Unexecuted instantiation: tiertexseq.c:ffifmt Unexecuted instantiation: tmv.c:ffifmt Unexecuted instantiation: tta.c:ffifmt Unexecuted instantiation: tty.c:ffifmt Unexecuted instantiation: txd.c:ffifmt Unexecuted instantiation: ty.c:ffifmt Unexecuted instantiation: usmdec.c:ffifmt Unexecuted instantiation: vag.c:ffifmt Unexecuted instantiation: vc1dec.c:ffifmt Unexecuted instantiation: vc1test.c:ffifmt Unexecuted instantiation: vividas.c:ffifmt Unexecuted instantiation: vivo.c:ffifmt Unexecuted instantiation: vocdec.c:ffifmt Unexecuted instantiation: vpk.c:ffifmt Unexecuted instantiation: vplayerdec.c:ffifmt Unexecuted instantiation: vqf.c:ffifmt Unexecuted instantiation: vvcdec.c:ffifmt Unexecuted instantiation: wady.c:ffifmt Unexecuted instantiation: wavarc.c:ffifmt Unexecuted instantiation: wavdec.c:ffifmt Unexecuted instantiation: wc3movie.c:ffifmt Unexecuted instantiation: webvttdec.c:ffifmt Unexecuted instantiation: westwood_aud.c:ffifmt Unexecuted instantiation: westwood_vqa.c:ffifmt Unexecuted instantiation: wsddec.c:ffifmt Unexecuted instantiation: wtvdec.c:ffifmt Unexecuted instantiation: wvdec.c:ffifmt Unexecuted instantiation: wvedec.c:ffifmt Unexecuted instantiation: xa.c:ffifmt Unexecuted instantiation: xmd.c:ffifmt Unexecuted instantiation: xmv.c:ffifmt Unexecuted instantiation: xvag.c:ffifmt Unexecuted instantiation: xwma.c:ffifmt Unexecuted instantiation: yop.c:ffifmt Unexecuted instantiation: yuv4mpegdec.c:ffifmt Unexecuted instantiation: 3dostr.c:ffifmt Unexecuted instantiation: 4xm.c:ffifmt Unexecuted instantiation: aacdec.c:ffifmt Unexecuted instantiation: aadec.c:ffifmt Unexecuted instantiation: aaxdec.c:ffifmt Unexecuted instantiation: ac3dec.c:ffifmt Unexecuted instantiation: ac4dec.c:ffifmt Unexecuted instantiation: acedec.c:ffifmt Unexecuted instantiation: acm.c:ffifmt Unexecuted instantiation: act.c:ffifmt Unexecuted instantiation: adp.c:ffifmt Unexecuted instantiation: ads.c:ffifmt Unexecuted instantiation: adxdec.c:ffifmt Unexecuted instantiation: aeadec.c:ffifmt Unexecuted instantiation: afc.c:ffifmt Unexecuted instantiation: aiffdec.c:ffifmt Unexecuted instantiation: aixdec.c:ffifmt Unexecuted instantiation: asf.c:ffifmt Unexecuted instantiation: flac_picture.c:ffifmt Unexecuted instantiation: rtsp.c:ffifmt Unexecuted instantiation: rtspdec.c:ffifmt Unexecuted instantiation: sapdec.c:ffifmt Unexecuted instantiation: rdt.c:ffifmt Unexecuted instantiation: rtpdec_asf.c:ffifmt |
147 | | |
148 | 16.9G | #define MAX_STD_TIMEBASES (30*12+30+3+6) |
149 | | typedef struct FFStreamInfo { |
150 | | int64_t last_dts; |
151 | | int64_t duration_gcd; |
152 | | int duration_count; |
153 | | int64_t rfps_duration_sum; |
154 | | double (*duration_error)[2][MAX_STD_TIMEBASES]; |
155 | | int64_t codec_info_duration; |
156 | | int64_t codec_info_duration_fields; |
157 | | int frame_delay_evidence; |
158 | | |
159 | | /** |
160 | | * 0 -> decoder has not been searched for yet. |
161 | | * >0 -> decoder found |
162 | | * <0 -> decoder with codec_id == -found_decoder has not been found |
163 | | */ |
164 | | int found_decoder; |
165 | | |
166 | | int64_t last_duration; |
167 | | |
168 | | /** |
169 | | * Those are used for average framerate estimation. |
170 | | */ |
171 | | int64_t fps_first_dts; |
172 | | int fps_first_dts_idx; |
173 | | int64_t fps_last_dts; |
174 | | int fps_last_dts_idx; |
175 | | } FFStreamInfo; |
176 | | |
177 | | /** |
178 | | * Returned by demuxers to indicate that data was consumed but discarded |
179 | | * (ignored streams or junk data). The framework will re-call the demuxer. |
180 | | */ |
181 | 9.45M | #define FFERROR_REDO FFERRTAG('R','E','D','O') |
182 | | |
183 | | /** |
184 | | * Read a transport packet from a media file. |
185 | | * |
186 | | * @param s media file handle |
187 | | * @param pkt is filled |
188 | | * @return 0 if OK, AVERROR_xxx on error |
189 | | */ |
190 | | int ff_read_packet(AVFormatContext *s, AVPacket *pkt); |
191 | | |
192 | | void ff_read_frame_flush(AVFormatContext *s); |
193 | | |
194 | | /** |
195 | | * Perform a binary search using av_index_search_timestamp() and |
196 | | * FFInputFormat.read_timestamp(). |
197 | | * |
198 | | * @param target_ts target timestamp in the time base of the given stream |
199 | | * @param stream_index stream number |
200 | | */ |
201 | | int ff_seek_frame_binary(AVFormatContext *s, int stream_index, |
202 | | int64_t target_ts, int flags); |
203 | | |
204 | | /** |
205 | | * Update cur_dts of all streams based on the given timestamp and AVStream. |
206 | | * |
207 | | * Stream ref_st unchanged, others set cur_dts in their native time base. |
208 | | * Only needed for timestamp wrapping or if (dts not set and pts!=dts). |
209 | | * @param timestamp new dts expressed in time_base of param ref_st |
210 | | * @param ref_st reference stream giving time_base of param timestamp |
211 | | */ |
212 | | void avpriv_update_cur_dts(AVFormatContext *s, AVStream *ref_st, int64_t timestamp); |
213 | | |
214 | | int ff_find_last_ts(AVFormatContext *s, int stream_index, int64_t *ts, int64_t *pos, |
215 | | int64_t (*read_timestamp)(struct AVFormatContext *, int , int64_t *, int64_t )); |
216 | | |
217 | | /** |
218 | | * Perform a binary search using read_timestamp(). |
219 | | * |
220 | | * @param target_ts target timestamp in the time base of the given stream |
221 | | * @param stream_index stream number |
222 | | */ |
223 | | int64_t ff_gen_search(AVFormatContext *s, int stream_index, |
224 | | int64_t target_ts, int64_t pos_min, |
225 | | int64_t pos_max, int64_t pos_limit, |
226 | | int64_t ts_min, int64_t ts_max, |
227 | | int flags, int64_t *ts_ret, |
228 | | int64_t (*read_timestamp)(struct AVFormatContext *, int , int64_t *, int64_t )); |
229 | | |
230 | | /** |
231 | | * Internal version of av_index_search_timestamp |
232 | | */ |
233 | | int ff_index_search_timestamp(const AVIndexEntry *entries, int nb_entries, |
234 | | int64_t wanted_timestamp, int flags); |
235 | | |
236 | | /** |
237 | | * Internal version of av_add_index_entry |
238 | | */ |
239 | | int ff_add_index_entry(AVIndexEntry **index_entries, |
240 | | int *nb_index_entries, |
241 | | unsigned int *index_entries_allocated_size, |
242 | | int64_t pos, int64_t timestamp, int size, int distance, int flags); |
243 | | |
244 | | void ff_configure_buffers_for_index(AVFormatContext *s, int64_t time_tolerance); |
245 | | |
246 | | /** |
247 | | * Ensure the index uses less memory than the maximum specified in |
248 | | * AVFormatContext.max_index_size by discarding entries if it grows |
249 | | * too large. |
250 | | */ |
251 | | void ff_reduce_index(AVFormatContext *s, int stream_index); |
252 | | |
253 | | /** |
254 | | * add frame for rfps calculation. |
255 | | * |
256 | | * @param dts timestamp of the i-th frame |
257 | | * @return 0 if OK, AVERROR_xxx on error |
258 | | */ |
259 | | int ff_rfps_add_frame(AVFormatContext *ic, AVStream *st, int64_t dts); |
260 | | |
261 | | void ff_rfps_calculate(AVFormatContext *ic); |
262 | | |
263 | | /** |
264 | | * Rescales a timestamp and the endpoints of an interval to which the temstamp |
265 | | * belongs, from a timebase `tb_in` to a timebase `tb_out`. |
266 | | * |
267 | | * The upper (lower) bound of the output interval is rounded up (down) such that |
268 | | * the output interval always falls within the input interval. The timestamp is |
269 | | * rounded to the nearest integer and halfway cases away from zero, and can |
270 | | * therefore fall outside of the output interval. |
271 | | * |
272 | | * Useful to simplify the rescaling of the arguments of FFInputFormat::read_seek2() |
273 | | * |
274 | | * @param[in] tb_in Timebase of the input `min_ts`, `ts` and `max_ts` |
275 | | * @param[in] tb_out Timebase of the output `min_ts`, `ts` and `max_ts` |
276 | | * @param[in,out] min_ts Lower bound of the interval |
277 | | * @param[in,out] ts Timestamp |
278 | | * @param[in,out] max_ts Upper bound of the interval |
279 | | */ |
280 | | void ff_rescale_interval(AVRational tb_in, AVRational tb_out, |
281 | | int64_t *min_ts, int64_t *ts, int64_t *max_ts); |
282 | | |
283 | | void avpriv_stream_set_need_parsing(AVStream *st, enum AVStreamParseType type); |
284 | | |
285 | | /** |
286 | | * Add a new chapter. |
287 | | * |
288 | | * @param s media file handle |
289 | | * @param id unique ID for this chapter |
290 | | * @param start chapter start time in time_base units |
291 | | * @param end chapter end time in time_base units |
292 | | * @param title chapter title |
293 | | * |
294 | | * @return AVChapter or NULL on error |
295 | | */ |
296 | | AVChapter *avpriv_new_chapter(AVFormatContext *s, int64_t id, AVRational time_base, |
297 | | int64_t start, int64_t end, const char *title); |
298 | | |
299 | | /** |
300 | | * Add an attached pic to an AVStream. |
301 | | * |
302 | | * @param st if set, the stream to add the attached pic to; |
303 | | * if unset, a new stream will be added to s. |
304 | | * @param pb AVIOContext to read data from if buf is unset. |
305 | | * @param buf if set, it contains the data and size information to be used |
306 | | * for the attached pic; if unset, data is read from pb. |
307 | | * @param size the size of the data to read if buf is unset. |
308 | | * |
309 | | * @return 0 on success, < 0 on error. On error, this function removes |
310 | | * the stream it has added (if any). |
311 | | */ |
312 | | int ff_add_attached_pic(AVFormatContext *s, AVStream *st, AVIOContext *pb, |
313 | | AVBufferRef **buf, int size); |
314 | | |
315 | | /** |
316 | | * Add side data to a packet for changing parameters to the given values. |
317 | | * Parameters set to 0 aren't included in the change. |
318 | | */ |
319 | | int ff_add_param_change(AVPacket *pkt, int32_t channels, |
320 | | uint64_t channel_layout, int32_t sample_rate, |
321 | | int32_t width, int32_t height); |
322 | | |
323 | | /** |
324 | | * Generate standard extradata for AVC-Intra based on width/height and field |
325 | | * order. |
326 | | */ |
327 | | int ff_generate_avci_extradata(AVStream *st); |
328 | | |
329 | | /** |
330 | | * Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end |
331 | | * which is always set to 0 and fill it from pb. |
332 | | * |
333 | | * @param size size of extradata |
334 | | * @return >= 0 if OK, AVERROR_xxx on error |
335 | | */ |
336 | | int ff_get_extradata(void *logctx, AVCodecParameters *par, AVIOContext *pb, int size); |
337 | | |
338 | | /** |
339 | | * Find stream index based on format-specific stream ID |
340 | | * @return stream index, or < 0 on error |
341 | | */ |
342 | | int ff_find_stream_index(const AVFormatContext *s, int id); |
343 | | |
344 | | int ff_buffer_packet(AVFormatContext *s, AVPacket *pkt); |
345 | | |
346 | | #endif /* AVFORMAT_DEMUX_H */ |