Muxers take encoded data in the form of AVPackets and write it into files or other output bytestreams in the specified container format. More...
Muxers take encoded data in the form of AVPackets and write it into files or other output bytestreams in the specified container format.
The main API functions for muxing are avformat_write_header() for writing the file header, av_write_frame() / av_interleaved_write_frame() for writing the packets and av_write_trailer() for finalizing the file.
At the beginning of the muxing process, the caller must first call avformat_alloc_context() to create a muxing context. The caller then sets up the muxer by filling the various fields in this context:
When the muxing context is fully set up, the caller must call avformat_write_header() to initialize the muxer internals and write the file header. Whether anything actually is written to the IO context at this step depends on the muxer, but this function must always be called. Any muxer private options must be passed in the options parameter to this function.
The data is then sent to the muxer by repeatedly calling av_write_frame() or av_interleaved_write_frame() (consult those functions' documentation for discussion on the difference between them; only one of them may be used with a single muxing context, they should not be mixed). Do note that the timing information on the packets sent to the muxer must be in the corresponding AVStream's timebase. That timebase is set by the muxer (in the avformat_write_header() step) and may be different from the timebase requested by the caller.
Once all the data has been written, the caller must call av_write_trailer() to flush any buffered packets and finalize the output file, then close the IO context (if any) and finally free the muxing context with avformat_free_context().
Allocate the stream private data and write the stream header to an output media file.
Definition at line 398 of file mux.c.
Referenced by build_feed_streams(), dash_write_header(), ff_rtp_chain_mux_open(), hds_write_header(), hls_write_header(), http_prepare_data(), ism_write_header(), main(), mpegts_write_header(), open_output_file(), open_slave(), rtp_mpegts_write_header(), rtp_new_av_stream(), seg_write_header(), segment_start(), write_output_file_header(), and write_packet().
Write a packet to an output media file.
This function passes the packet directly to the muxer, without any buffering or reordering. The caller is responsible for correctly interleaving the packets if the format requires it. Callers that want libavformat to handle the interleaving should call av_interleaved_write_frame() instead of this function.
Definition at line 627 of file mux.c.
Referenced by av_write_uncoded_frame_internal(), dash_flush(), encode_audio_frame(), ff_write_chained(), hls_write_packet(), http_prepare_data(), ism_flush(), mpegts_write_packet_internal(), rtp_mpegts_write_packet(), and segment_end().
Write a packet to an output media file ensuring correct interleaving.
This function will buffer the packets internally as needed to make sure the packets in the output file are properly interleaved in the order of increasing dts. Callers doing their own interleaving should call av_write_frame() instead of this function.
Definition at line 868 of file mux.c.
Referenced by av_write_uncoded_frame_internal(), encode_write_frame(), ff_write_chained(), main(), tee_write_packet(), write_frame(), write_packet(), and write_video_frame().
Write a uncoded frame to an output media file.
The frame must be correctly interleaved according to the container specification; if not, then av_interleaved_write_frame() must be used.
See av_interleaved_write_frame() for details.
Write a uncoded frame to an output media file.
If the muxer supports it, this function allows to write an AVFrame structure directly, without encoding it into a packet. It is mostly useful for devices and similar special muxers that use raw video or PCM data and will not serialize it into a byte stream.
To test whether it is possible to use it with a given muxer and stream, use av_write_uncoded_frame_query().
The caller gives up ownership of the frame and must not access it afterwards.
Definition at line 1036 of file mux.c.
Referenced by main().
Write the stream trailer to an output media file and free the file private data.
May only be called after a successful call to avformat_write_header.
Definition at line 920 of file mux.c.
Referenced by close_connection(), dash_free(), ff_mov_close_hinting(), ff_rtsp_undo_setup(), hds_free(), hls_write_trailer(), http_prepare_data(), ism_free(), main(), rtp_mpegts_write_close(), sap_write_close(), seg_write_trailer(), segment_end(), tee_write_trailer(), transcode(), write_output_file_trailer(), and write_packet().
Return the output format in the list of registered output formats which best matches the provided parameters, or return NULL if there is no match.
Definition at line 94 of file format.c.
Referenced by av_guess_codec(), av_guess_format(), avformat_alloc_output_context2(), dash_write_header(), ff_rtp_chain_mux_open(), ffserver_guess_format(), ffserver_parse_config_feed(), hds_write_header(), hls_write_header(), ism_write_header(), mpegts_write_header(), open_output_file(), prepare_sdp_description(), rtp_mpegts_write_header(), rtp_new_av_stream(), seg_write_header(), and show_help_muxer().
Guess the codec ID based upon muxer and filename.
Definition at line 129 of file format.c.
Referenced by choose_encoder(), and open_output_file().
Get timing information for the data currently output.
The exact meaning of "currently output" depends on the format. It is mostly relevant for devices that have an internal buffer and/or work in real time.