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