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.

933 lines
29KB

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