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.

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