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