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