You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

856 lines
27KB

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