]> git.sesse.net Git - ffmpeg/blob - libavformat/internal.h
23c2ce0dc35043447034c05928aa698ee4e2cb3a
[ffmpeg] / libavformat / internal.h
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_INTERNAL_H
22 #define AVFORMAT_INTERNAL_H
23
24 #include <stdint.h>
25
26 #include "libavutil/bprint.h"
27 #include "avformat.h"
28 #include "os_support.h"
29
30 #define MAX_URL_SIZE 4096
31
32 /** size of probe buffer, for guessing file type from file contents */
33 #define PROBE_BUF_MIN 2048
34 #define PROBE_BUF_MAX (1 << 20)
35
36 #ifdef DEBUG
37 #    define hex_dump_debug(class, buf, size) av_hex_dump_log(class, AV_LOG_DEBUG, buf, size)
38 #else
39 #    define hex_dump_debug(class, buf, size) do { if (0) av_hex_dump_log(class, AV_LOG_DEBUG, buf, size); } while(0)
40 #endif
41
42 typedef struct AVCodecTag {
43     enum AVCodecID id;
44     unsigned int tag;
45 } AVCodecTag;
46
47 typedef struct CodecMime{
48     char str[32];
49     enum AVCodecID id;
50 } CodecMime;
51
52 /*************************************************/
53 /* fractional numbers for exact pts handling */
54
55 /**
56  * The exact value of the fractional number is: 'val + num / den'.
57  * num is assumed to be 0 <= num < den.
58  */
59 typedef struct FFFrac {
60     int64_t val, num, den;
61 } FFFrac;
62
63
64 struct AVFormatInternal {
65     /**
66      * Number of streams relevant for interleaving.
67      * Muxing only.
68      */
69     int nb_interleaved_streams;
70
71     /**
72      * This buffer is only needed when packets were already buffered but
73      * not decoded, for example to get the codec parameters in MPEG
74      * streams.
75      */
76     struct AVPacketList *packet_buffer;
77     struct AVPacketList *packet_buffer_end;
78
79     /* av_seek_frame() support */
80     int64_t data_offset; /**< offset of the first packet */
81
82     /**
83      * Raw packets from the demuxer, prior to parsing and decoding.
84      * This buffer is used for buffering packets until the codec can
85      * be identified, as parsing cannot be done without knowing the
86      * codec.
87      */
88     struct AVPacketList *raw_packet_buffer;
89     struct AVPacketList *raw_packet_buffer_end;
90     /**
91      * Packets split by the parser get queued here.
92      */
93     struct AVPacketList *parse_queue;
94     struct AVPacketList *parse_queue_end;
95     /**
96      * Remaining size available for raw_packet_buffer, in bytes.
97      */
98 #define RAW_PACKET_BUFFER_SIZE 2500000
99     int raw_packet_buffer_remaining_size;
100
101     /**
102      * Offset to remap timestamps to be non-negative.
103      * Expressed in timebase units.
104      * @see AVStream.mux_ts_offset
105      */
106     int64_t offset;
107
108     /**
109      * Timebase for the timestamp offset.
110      */
111     AVRational offset_timebase;
112
113 #if FF_API_COMPUTE_PKT_FIELDS2
114     int missing_ts_warning;
115 #endif
116
117     int inject_global_side_data;
118
119     int avoid_negative_ts_use_pts;
120
121     /**
122      * Timestamp of the end of the shortest stream.
123      */
124     int64_t shortest_end;
125
126     /**
127      * Whether or not avformat_init_output has already been called
128      */
129     int initialized;
130
131     /**
132      * Whether or not avformat_init_output fully initialized streams
133      */
134     int streams_initialized;
135
136     /**
137      * ID3v2 tag useful for MP3 demuxing
138      */
139     AVDictionary *id3v2_meta;
140
141     /*
142      * Prefer the codec framerate for avg_frame_rate computation.
143      */
144     int prefer_codec_framerate;
145 };
146
147 struct AVStreamInternal {
148     /**
149      * Set to 1 if the codec allows reordering, so pts can be different
150      * from dts.
151      */
152     int reorder;
153
154     /**
155      * bitstream filter to run on stream
156      * - encoding: Set by muxer using ff_stream_add_bitstream_filter
157      * - decoding: unused
158      */
159     AVBSFContext *bsfc;
160
161     /**
162      * Whether or not check_bitstream should still be run on each packet
163      */
164     int bitstream_checked;
165
166     /**
167      * The codec context used by avformat_find_stream_info, the parser, etc.
168      */
169     AVCodecContext *avctx;
170     /**
171      * 1 if avctx has been initialized with the values from the codec parameters
172      */
173     int avctx_inited;
174
175     enum AVCodecID orig_codec_id;
176
177     /* the context for extracting extradata in find_stream_info()
178      * inited=1/bsf=NULL signals that extracting is not possible (codec not
179      * supported) */
180     struct {
181         AVBSFContext *bsf;
182         AVPacket     *pkt;
183         int inited;
184     } extract_extradata;
185
186     /**
187      * Whether the internal avctx needs to be updated from codecpar (after a late change to codecpar)
188      */
189     int need_context_update;
190
191     int is_intra_only;
192
193     FFFrac *priv_pts;
194
195 #define MAX_STD_TIMEBASES (30*12+30+3+6)
196     /**
197      * Stream information used internally by avformat_find_stream_info()
198      */
199     struct {
200         int64_t last_dts;
201         int64_t duration_gcd;
202         int duration_count;
203         int64_t rfps_duration_sum;
204         double (*duration_error)[2][MAX_STD_TIMEBASES];
205         int64_t codec_info_duration;
206         int64_t codec_info_duration_fields;
207         int frame_delay_evidence;
208
209         /**
210          * 0  -> decoder has not been searched for yet.
211          * >0 -> decoder found
212          * <0 -> decoder with codec_id == -found_decoder has not been found
213          */
214         int found_decoder;
215
216         int64_t last_duration;
217
218         /**
219          * Those are used for average framerate estimation.
220          */
221         int64_t fps_first_dts;
222         int     fps_first_dts_idx;
223         int64_t fps_last_dts;
224         int     fps_last_dts_idx;
225
226     } *info;
227
228     AVIndexEntry *index_entries; /**< Only used if the format does not
229                                     support seeking natively. */
230     int nb_index_entries;
231     unsigned int index_entries_allocated_size;
232
233     int64_t interleaver_chunk_size;
234     int64_t interleaver_chunk_duration;
235
236     /**
237      * stream probing state
238      * -1   -> probing finished
239      *  0   -> no probing requested
240      * rest -> perform probing with request_probe being the minimum score to accept.
241      */
242     int request_probe;
243     /**
244      * Indicates that everything up to the next keyframe
245      * should be discarded.
246      */
247     int skip_to_keyframe;
248
249     /**
250      * Number of samples to skip at the start of the frame decoded from the next packet.
251      */
252     int skip_samples;
253
254     /**
255      * If not 0, the number of samples that should be skipped from the start of
256      * the stream (the samples are removed from packets with pts==0, which also
257      * assumes negative timestamps do not happen).
258      * Intended for use with formats such as mp3 with ad-hoc gapless audio
259      * support.
260      */
261     int64_t start_skip_samples;
262
263     /**
264      * If not 0, the first audio sample that should be discarded from the stream.
265      * This is broken by design (needs global sample count), but can't be
266      * avoided for broken by design formats such as mp3 with ad-hoc gapless
267      * audio support.
268      */
269     int64_t first_discard_sample;
270
271     /**
272      * The sample after last sample that is intended to be discarded after
273      * first_discard_sample. Works on frame boundaries only. Used to prevent
274      * early EOF if the gapless info is broken (considered concatenated mp3s).
275      */
276     int64_t last_discard_sample;
277
278     /**
279      * Number of internally decoded frames, used internally in libavformat, do not access
280      * its lifetime differs from info which is why it is not in that structure.
281      */
282     int nb_decoded_frames;
283
284     /**
285      * Timestamp offset added to timestamps before muxing
286      */
287     int64_t mux_ts_offset;
288
289     /**
290      * Internal data to check for wrapping of the time stamp
291      */
292     int64_t pts_wrap_reference;
293
294     /**
295      * Options for behavior, when a wrap is detected.
296      *
297      * Defined by AV_PTS_WRAP_ values.
298      *
299      * If correction is enabled, there are two possibilities:
300      * If the first time stamp is near the wrap point, the wrap offset
301      * will be subtracted, which will create negative time stamps.
302      * Otherwise the offset will be added.
303      */
304     int pts_wrap_behavior;
305
306     /**
307      * Internal data to prevent doing update_initial_durations() twice
308      */
309     int update_initial_durations_done;
310
311 #define MAX_REORDER_DELAY 16
312
313     /**
314      * Internal data to generate dts from pts
315      */
316     int64_t pts_reorder_error[MAX_REORDER_DELAY+1];
317     uint8_t pts_reorder_error_count[MAX_REORDER_DELAY+1];
318
319     int64_t pts_buffer[MAX_REORDER_DELAY+1];
320
321     /**
322      * Internal data to analyze DTS and detect faulty mpeg streams
323      */
324     int64_t last_dts_for_order_check;
325     uint8_t dts_ordered;
326     uint8_t dts_misordered;
327
328     /**
329      * Internal data to inject global side data
330      */
331     int inject_global_side_data;
332
333     /**
334      * display aspect ratio (0 if unknown)
335      * - encoding: unused
336      * - decoding: Set by libavformat to calculate sample_aspect_ratio internally
337      */
338     AVRational display_aspect_ratio;
339 };
340
341 #ifdef __GNUC__
342 #define dynarray_add(tab, nb_ptr, elem)\
343 do {\
344     __typeof__(tab) _tab = (tab);\
345     __typeof__(elem) _elem = (elem);\
346     (void)sizeof(**_tab == _elem); /* check that types are compatible */\
347     av_dynarray_add(_tab, nb_ptr, _elem);\
348 } while(0)
349 #else
350 #define dynarray_add(tab, nb_ptr, elem)\
351 do {\
352     av_dynarray_add((tab), nb_ptr, (elem));\
353 } while(0)
354 #endif
355
356 struct tm *ff_brktimegm(time_t secs, struct tm *tm);
357
358 /**
359  * Automatically create sub-directories
360  *
361  * @param path will create sub-directories by path
362  * @return 0, or < 0 on error
363  */
364 int ff_mkdir_p(const char *path);
365
366 char *ff_data_to_hex(char *buf, const uint8_t *src, int size, int lowercase);
367
368 /**
369  * Parse a string of hexadecimal strings. Any space between the hexadecimal
370  * digits is ignored.
371  *
372  * @param data if non-null, the parsed data is written to this pointer
373  * @param p the string to parse
374  * @return the number of bytes written (or to be written, if data is null)
375  */
376 int ff_hex_to_data(uint8_t *data, const char *p);
377
378 /**
379  * Add packet to an AVFormatContext's packet_buffer list, determining its
380  * interleaved position using compare() function argument.
381  * @return 0 on success, < 0 on error. pkt will always be blank on return.
382  */
383 int ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
384                              int (*compare)(AVFormatContext *, const AVPacket *, const AVPacket *));
385
386 void ff_read_frame_flush(AVFormatContext *s);
387
388 #define NTP_OFFSET 2208988800ULL
389 #define NTP_OFFSET_US (NTP_OFFSET * 1000000ULL)
390
391 /** Get the current time since NTP epoch in microseconds. */
392 uint64_t ff_ntp_time(void);
393
394 /**
395  * Get the NTP time stamp formatted as per the RFC-5905.
396  *
397  * @param ntp_time NTP time in micro seconds (since NTP epoch)
398  * @return the formatted NTP time stamp
399  */
400 uint64_t ff_get_formatted_ntp_time(uint64_t ntp_time_us);
401
402 /**
403  * Append the media-specific SDP fragment for the media stream c
404  * to the buffer buff.
405  *
406  * Note, the buffer needs to be initialized, since it is appended to
407  * existing content.
408  *
409  * @param buff the buffer to append the SDP fragment to
410  * @param size the size of the buff buffer
411  * @param st the AVStream of the media to describe
412  * @param idx the global stream index
413  * @param dest_addr the destination address of the media stream, may be NULL
414  * @param dest_type the destination address type, may be NULL
415  * @param port the destination port of the media stream, 0 if unknown
416  * @param ttl the time to live of the stream, 0 if not multicast
417  * @param fmt the AVFormatContext, which might contain options modifying
418  *            the generated SDP
419  */
420 void ff_sdp_write_media(char *buff, int size, AVStream *st, int idx,
421                         const char *dest_addr, const char *dest_type,
422                         int port, int ttl, AVFormatContext *fmt);
423
424 /**
425  * Write a packet to another muxer than the one the user originally
426  * intended. Useful when chaining muxers, where one muxer internally
427  * writes a received packet to another muxer.
428  *
429  * @param dst the muxer to write the packet to
430  * @param dst_stream the stream index within dst to write the packet to
431  * @param pkt the packet to be written
432  * @param src the muxer the packet originally was intended for
433  * @param interleave 0->use av_write_frame, 1->av_interleaved_write_frame
434  * @return the value av_write_frame returned
435  */
436 int ff_write_chained(AVFormatContext *dst, int dst_stream, AVPacket *pkt,
437                      AVFormatContext *src, int interleave);
438
439 /**
440  * Read a whole line of text from AVIOContext. Stop reading after reaching
441  * either a \\n, a \\0 or EOF. The returned string is always \\0-terminated,
442  * and may be truncated if the buffer is too small.
443  *
444  * @param s the read-only AVIOContext
445  * @param buf buffer to store the read line
446  * @param maxlen size of the buffer
447  * @return the length of the string written in the buffer, not including the
448  *         final \\0
449  */
450 int ff_get_line(AVIOContext *s, char *buf, int maxlen);
451
452 /**
453  * Same as ff_get_line but strip the white-space characters in the text tail
454  *
455  * @param s the read-only AVIOContext
456  * @param buf buffer to store the read line
457  * @param maxlen size of the buffer
458  * @return the length of the string written in the buffer
459  */
460 int ff_get_chomp_line(AVIOContext *s, char *buf, int maxlen);
461
462 /**
463  * Read a whole line of text from AVIOContext to an AVBPrint buffer. Stop
464  * reading after reaching a \\r, a \\n, a \\r\\n, a \\0 or EOF.  The line
465  * ending characters are NOT included in the buffer, but they are skipped on
466  * the input.
467  *
468  * @param s the read-only AVIOContext
469  * @param bp the AVBPrint buffer
470  * @return the length of the read line, not including the line endings,
471  *         negative on error.
472  */
473 int64_t ff_read_line_to_bprint(AVIOContext *s, AVBPrint *bp);
474
475 /**
476  * Read a whole line of text from AVIOContext to an AVBPrint buffer overwriting
477  * its contents. Stop reading after reaching a \\r, a \\n, a \\r\\n, a \\0 or
478  * EOF. The line ending characters are NOT included in the buffer, but they
479  * are skipped on the input.
480  *
481  * @param s the read-only AVIOContext
482  * @param bp the AVBPrint buffer
483  * @return the length of the read line not including the line endings,
484  *         negative on error, or if the buffer becomes truncated.
485  */
486 int64_t ff_read_line_to_bprint_overwrite(AVIOContext *s, AVBPrint *bp);
487
488 #define SPACE_CHARS " \t\r\n"
489
490 /**
491  * Callback function type for ff_parse_key_value.
492  *
493  * @param key a pointer to the key
494  * @param key_len the number of bytes that belong to the key, including the '='
495  *                char
496  * @param dest return the destination pointer for the value in *dest, may
497  *             be null to ignore the value
498  * @param dest_len the length of the *dest buffer
499  */
500 typedef void (*ff_parse_key_val_cb)(void *context, const char *key,
501                                     int key_len, char **dest, int *dest_len);
502 /**
503  * Parse a string with comma-separated key=value pairs. The value strings
504  * may be quoted and may contain escaped characters within quoted strings.
505  *
506  * @param str the string to parse
507  * @param callback_get_buf function that returns where to store the
508  *                         unescaped value string.
509  * @param context the opaque context pointer to pass to callback_get_buf
510  */
511 void ff_parse_key_value(const char *str, ff_parse_key_val_cb callback_get_buf,
512                         void *context);
513
514 /**
515  * Find stream index based on format-specific stream ID
516  * @return stream index, or < 0 on error
517  */
518 int ff_find_stream_index(AVFormatContext *s, int id);
519
520 /**
521  * Internal version of av_index_search_timestamp
522  */
523 int ff_index_search_timestamp(const AVIndexEntry *entries, int nb_entries,
524                               int64_t wanted_timestamp, int flags);
525
526 /**
527  * Internal version of av_add_index_entry
528  */
529 int ff_add_index_entry(AVIndexEntry **index_entries,
530                        int *nb_index_entries,
531                        unsigned int *index_entries_allocated_size,
532                        int64_t pos, int64_t timestamp, int size, int distance, int flags);
533
534 void ff_configure_buffers_for_index(AVFormatContext *s, int64_t time_tolerance);
535
536 /**
537  * Add a new chapter.
538  *
539  * @param s media file handle
540  * @param id unique ID for this chapter
541  * @param start chapter start time in time_base units
542  * @param end chapter end time in time_base units
543  * @param title chapter title
544  *
545  * @return AVChapter or NULL on error
546  */
547 AVChapter *avpriv_new_chapter(AVFormatContext *s, int id, AVRational time_base,
548                               int64_t start, int64_t end, const char *title);
549
550 /**
551  * Ensure the index uses less memory than the maximum specified in
552  * AVFormatContext.max_index_size by discarding entries if it grows
553  * too large.
554  */
555 void ff_reduce_index(AVFormatContext *s, int stream_index);
556
557 enum AVCodecID ff_guess_image2_codec(const char *filename);
558
559 /**
560  * Perform a binary search using av_index_search_timestamp() and
561  * AVInputFormat.read_timestamp().
562  *
563  * @param target_ts target timestamp in the time base of the given stream
564  * @param stream_index stream number
565  */
566 int ff_seek_frame_binary(AVFormatContext *s, int stream_index,
567                          int64_t target_ts, int flags);
568
569 /**
570  * Update cur_dts of all streams based on the given timestamp and AVStream.
571  *
572  * Stream ref_st unchanged, others set cur_dts in their native time base.
573  * Only needed for timestamp wrapping or if (dts not set and pts!=dts).
574  * @param timestamp new dts expressed in time_base of param ref_st
575  * @param ref_st reference stream giving time_base of param timestamp
576  */
577 void ff_update_cur_dts(AVFormatContext *s, AVStream *ref_st, int64_t timestamp);
578
579 int ff_find_last_ts(AVFormatContext *s, int stream_index, int64_t *ts, int64_t *pos,
580                     int64_t (*read_timestamp)(struct AVFormatContext *, int , int64_t *, int64_t ));
581
582 /**
583  * Perform a binary search using read_timestamp().
584  *
585  * @param target_ts target timestamp in the time base of the given stream
586  * @param stream_index stream number
587  */
588 int64_t ff_gen_search(AVFormatContext *s, int stream_index,
589                       int64_t target_ts, int64_t pos_min,
590                       int64_t pos_max, int64_t pos_limit,
591                       int64_t ts_min, int64_t ts_max,
592                       int flags, int64_t *ts_ret,
593                       int64_t (*read_timestamp)(struct AVFormatContext *, int , int64_t *, int64_t ));
594
595 /**
596  * Set the time base and wrapping info for a given stream. This will be used
597  * to interpret the stream's timestamps. If the new time base is invalid
598  * (numerator or denominator are non-positive), it leaves the stream
599  * unchanged.
600  *
601  * @param s stream
602  * @param pts_wrap_bits number of bits effectively used by the pts
603  *        (used for wrap control)
604  * @param pts_num time base numerator
605  * @param pts_den time base denominator
606  */
607 void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits,
608                          unsigned int pts_num, unsigned int pts_den);
609
610 /**
611  * Add side data to a packet for changing parameters to the given values.
612  * Parameters set to 0 aren't included in the change.
613  */
614 int ff_add_param_change(AVPacket *pkt, int32_t channels,
615                         uint64_t channel_layout, int32_t sample_rate,
616                         int32_t width, int32_t height);
617
618 /**
619  * Set the timebase for each stream from the corresponding codec timebase and
620  * print it.
621  */
622 int ff_framehash_write_header(AVFormatContext *s);
623
624 /**
625  * Read a transport packet from a media file.
626  *
627  * @param s media file handle
628  * @param pkt is filled
629  * @return 0 if OK, AVERROR_xxx on error
630  */
631 int ff_read_packet(AVFormatContext *s, AVPacket *pkt);
632
633 /**
634  * Interleave an AVPacket per dts so it can be muxed.
635  *
636  * @param s   an AVFormatContext for output. pkt resp. out will be added to
637  *            resp. taken from its packet buffer.
638  * @param out the interleaved packet will be output here
639  * @param pkt the input packet; will be blank on return if not NULL
640  * @param flush 1 if no further packets are available as input and all
641  *              remaining packets should be output
642  * @return 1 if a packet was output, 0 if no packet could be output
643  *         (in which case out may be uninitialized), < 0 if an error occurred
644  */
645 int ff_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out,
646                                  AVPacket *pkt, int flush);
647
648 void ff_free_stream(AVFormatContext *s, AVStream *st);
649
650 /**
651  * Return the frame duration in seconds. Return 0 if not available.
652  */
653 void ff_compute_frame_duration(AVFormatContext *s, int *pnum, int *pden, AVStream *st,
654                                AVCodecParserContext *pc, AVPacket *pkt);
655
656 unsigned int ff_codec_get_tag(const AVCodecTag *tags, enum AVCodecID id);
657
658 enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag);
659
660 int ff_is_intra_only(enum AVCodecID id);
661
662 /**
663  * Select a PCM codec based on the given parameters.
664  *
665  * @param bps     bits-per-sample
666  * @param flt     floating-point
667  * @param be      big-endian
668  * @param sflags  signed flags. each bit corresponds to one byte of bit depth.
669  *                e.g. the 1st bit indicates if 8-bit should be signed or
670  *                unsigned, the 2nd bit indicates if 16-bit should be signed or
671  *                unsigned, etc... This is useful for formats such as WAVE where
672  *                only 8-bit is unsigned and all other bit depths are signed.
673  * @return        a PCM codec id or AV_CODEC_ID_NONE
674  */
675 enum AVCodecID ff_get_pcm_codec_id(int bps, int flt, int be, int sflags);
676
677 /**
678  * Chooses a timebase for muxing the specified stream.
679  *
680  * The chosen timebase allows sample accurate timestamps based
681  * on the framerate or sample rate for audio streams. It also is
682  * at least as precise as 1/min_precision would be.
683  */
684 AVRational ff_choose_timebase(AVFormatContext *s, AVStream *st, int min_precision);
685
686 /**
687  * Chooses a timebase for muxing the specified stream.
688  */
689 enum AVChromaLocation ff_choose_chroma_location(AVFormatContext *s, AVStream *st);
690
691 /**
692  * Generate standard extradata for AVC-Intra based on width/height and field
693  * order.
694  */
695 int ff_generate_avci_extradata(AVStream *st);
696
697 /**
698  * Add a bitstream filter to a stream.
699  *
700  * @param st output stream to add a filter to
701  * @param name the name of the filter to add
702  * @param args filter-specific argument string
703  * @return  >0 on success;
704  *          AVERROR code on failure
705  */
706 int ff_stream_add_bitstream_filter(AVStream *st, const char *name, const char *args);
707
708 /**
709  * Copy encoding parameters from source to destination stream
710  *
711  * @param dst pointer to destination AVStream
712  * @param src pointer to source AVStream
713  * @return >=0 on success, AVERROR code on error
714  */
715 int ff_stream_encode_params_copy(AVStream *dst, const AVStream *src);
716
717 /**
718  * Wrap avpriv_io_move and log if error happens.
719  *
720  * @param url_src source path
721  * @param url_dst destination path
722  * @return        0 or AVERROR on failure
723  */
724 int ff_rename(const char *url_src, const char *url_dst, void *logctx);
725
726 /**
727  * Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end
728  * which is always set to 0.
729  *
730  * Previously allocated extradata in par will be freed.
731  *
732  * @param size size of extradata
733  * @return 0 if OK, AVERROR_xxx on error
734  */
735 int ff_alloc_extradata(AVCodecParameters *par, int size);
736
737 /**
738  * Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end
739  * which is always set to 0 and fill it from pb.
740  *
741  * @param size size of extradata
742  * @return >= 0 if OK, AVERROR_xxx on error
743  */
744 int ff_get_extradata(AVFormatContext *s, AVCodecParameters *par, AVIOContext *pb, int size);
745
746 /**
747  * add frame for rfps calculation.
748  *
749  * @param dts timestamp of the i-th frame
750  * @return 0 if OK, AVERROR_xxx on error
751  */
752 int ff_rfps_add_frame(AVFormatContext *ic, AVStream *st, int64_t dts);
753
754 void ff_rfps_calculate(AVFormatContext *ic);
755
756 /**
757  * Flags for AVFormatContext.write_uncoded_frame()
758  */
759 enum AVWriteUncodedFrameFlags {
760
761     /**
762      * Query whether the feature is possible on this stream.
763      * The frame argument is ignored.
764      */
765     AV_WRITE_UNCODED_FRAME_QUERY           = 0x0001,
766
767 };
768
769 /**
770  * Copies the whilelists from one context to the other
771  */
772 int ff_copy_whiteblacklists(AVFormatContext *dst, const AVFormatContext *src);
773
774 /**
775  * Returned by demuxers to indicate that data was consumed but discarded
776  * (ignored streams or junk data). The framework will re-call the demuxer.
777  */
778 #define FFERROR_REDO FFERRTAG('R','E','D','O')
779
780 /**
781  * Utility function to open IO stream of output format.
782  *
783  * @param s AVFormatContext
784  * @param url URL or file name to open for writing
785  * @options optional options which will be passed to io_open callback
786  * @return >=0 on success, negative AVERROR in case of failure
787  */
788 int ff_format_output_open(AVFormatContext *s, const char *url, AVDictionary **options);
789
790 /*
791  * A wrapper around AVFormatContext.io_close that should be used
792  * instead of calling the pointer directly.
793  */
794 void ff_format_io_close(AVFormatContext *s, AVIOContext **pb);
795
796 /**
797  * Utility function to check if the file uses http or https protocol
798  *
799  * @param s AVFormatContext
800  * @param filename URL or file name to open for writing
801  */
802 int ff_is_http_proto(char *filename);
803
804 /**
805  * Parse creation_time in AVFormatContext metadata if exists and warn if the
806  * parsing fails.
807  *
808  * @param s AVFormatContext
809  * @param timestamp parsed timestamp in microseconds, only set on successful parsing
810  * @param return_seconds set this to get the number of seconds in timestamp instead of microseconds
811  * @return 1 if OK, 0 if the metadata was not present, AVERROR(EINVAL) on parse error
812  */
813 int ff_parse_creation_time_metadata(AVFormatContext *s, int64_t *timestamp, int return_seconds);
814
815 /**
816  * Standardize creation_time metadata in AVFormatContext to an ISO-8601
817  * timestamp string.
818  *
819  * @param s AVFormatContext
820  * @return <0 on error
821  */
822 int ff_standardize_creation_time(AVFormatContext *s);
823
824 #define CONTAINS_PAL 2
825 /**
826  * Reshuffles the lines to use the user specified stride.
827  *
828  * @param ppkt input and output packet
829  * @return negative error code or
830  *         0 if no new packet was allocated
831  *         non-zero if a new packet was allocated and ppkt has to be freed
832  *         CONTAINS_PAL if in addition to a new packet the old contained a palette
833  */
834 int ff_reshuffle_raw_rgb(AVFormatContext *s, AVPacket **ppkt, AVCodecParameters *par, int expected_stride);
835
836 /**
837  * Retrieves the palette from a packet, either from side data, or
838  * appended to the video data in the packet itself (raw video only).
839  * It is commonly used after a call to ff_reshuffle_raw_rgb().
840  *
841  * Use 0 for the ret parameter to check for side data only.
842  *
843  * @param pkt pointer to packet before calling ff_reshuffle_raw_rgb()
844  * @param ret return value from ff_reshuffle_raw_rgb(), or 0
845  * @param palette pointer to palette buffer
846  * @return negative error code or
847  *         1 if the packet has a palette, else 0
848  */
849 int ff_get_packet_palette(AVFormatContext *s, AVPacket *pkt, int ret, uint32_t *palette);
850
851 /**
852  * Finalize buf into extradata and set its size appropriately.
853  */
854 int ff_bprint_to_codecpar_extradata(AVCodecParameters *par, struct AVBPrint *buf);
855
856 /**
857  * Find the next packet in the interleaving queue for the given stream.
858  * The pkt parameter is filled in with the queued packet, including
859  * references to the data (which the caller is not allowed to keep or
860  * modify).
861  *
862  * @return 0 if a packet was found, a negative value if no packet was found
863  */
864 int ff_interleaved_peek(AVFormatContext *s, int stream,
865                         AVPacket *pkt, int add_offset);
866
867
868 int ff_lock_avformat(void);
869 int ff_unlock_avformat(void);
870
871 /**
872  * Set AVFormatContext url field to the provided pointer. The pointer must
873  * point to a valid string. The existing url field is freed if necessary. Also
874  * set the legacy filename field to the same string which was provided in url.
875  */
876 void ff_format_set_url(AVFormatContext *s, char *url);
877
878 void avpriv_register_devices(const AVOutputFormat * const o[], const AVInputFormat * const i[]);
879
880 #endif /* AVFORMAT_INTERNAL_H */