FFmpeg
|
#include <mux.h>
Data Fields | |
AVOutputFormat | p |
The public AVOutputFormat. More... | |
int | priv_data_size |
size of private data so that it can be allocated in the wrapper More... | |
int | flags_internal |
Internal flags. More... | |
int(* | write_header )(AVFormatContext *) |
int(* | write_packet )(AVFormatContext *, AVPacket *pkt) |
Write a packet. More... | |
int(* | write_trailer )(AVFormatContext *) |
int(* | interleave_packet )(AVFormatContext *s, AVPacket *pkt, int flush, int has_packet) |
A format-specific function for interleavement. More... | |
int(* | query_codec )(enum AVCodecID id, int std_compliance) |
Test if the given codec can be stored in this container. More... | |
void(* | get_output_timestamp )(AVFormatContext *s, int stream, int64_t *dts, int64_t *wall) |
int(* | control_message )(AVFormatContext *s, int type, void *data, size_t data_size) |
Allows sending messages from application to device. More... | |
int(* | write_uncoded_frame )(AVFormatContext *, int stream_index, AVFrame **frame, unsigned flags) |
Write an uncoded AVFrame. More... | |
int(* | get_device_list )(AVFormatContext *s, struct AVDeviceInfoList *device_list) |
Returns device list with it properties. More... | |
int(* | init )(AVFormatContext *) |
Initialize format. More... | |
void(* | deinit )(AVFormatContext *) |
Deinitialize format. More... | |
int(* | check_bitstream )(AVFormatContext *s, AVStream *st, const AVPacket *pkt) |
Set up any necessary bitstream filtering and extract any extra data needed for the global header. More... | |
AVOutputFormat FFOutputFormat::p |
The public AVOutputFormat.
See avformat.h for it.
Definition at line 34 of file mux.h.
Referenced by init_muxer(), mpeg_mux_init(), and next_output().
int FFOutputFormat::priv_data_size |
size of private data so that it can be allocated in the wrapper
Definition at line 38 of file mux.h.
Referenced by avformat_alloc_output_context2(), and init_muxer().
int FFOutputFormat::flags_internal |
int(* FFOutputFormat::write_header) (AVFormatContext *) |
Definition at line 45 of file mux.h.
Referenced by avformat_write_header().
int(* FFOutputFormat::write_packet) (AVFormatContext *, AVPacket *pkt) |
Write a packet.
If AVFMT_ALLOW_FLUSH is set in flags, pkt can be NULL in order to flush data buffered in the muxer. When flushing, return 0 if there still is more data to flush, or 1 if everything was flushed and there is no more buffered data.
Definition at line 53 of file mux.h.
Referenced by av_write_frame(), and write_packet().
int(* FFOutputFormat::write_trailer) (AVFormatContext *) |
Definition at line 54 of file mux.h.
Referenced by av_write_trailer().
int(* FFOutputFormat::interleave_packet) (AVFormatContext *s, AVPacket *pkt, int flush, int has_packet) |
A format-specific function for interleavement.
If unset, packets will be interleaved by dts.
s | An AVFormatContext for output. pkt will be added to resp. taken from its packet buffer. | |
[in,out] | pkt | A packet to be interleaved if has_packet is set; also used to return packets. If no packet is returned (e.g. on error), pkt is blank on return. |
flush | 1 if no further packets are available as input and all remaining packets should be output. | |
has_packet | If set, pkt contains a packet to be interleaved on input; otherwise pkt is blank on input. |
Definition at line 71 of file mux.h.
Referenced by init_muxer(), and seg_write_packet().
Test if the given codec can be stored in this container.
Definition at line 80 of file mux.h.
Referenced by avformat_query_codec().
void(* FFOutputFormat::get_output_timestamp) (AVFormatContext *s, int stream, int64_t *dts, int64_t *wall) |
Definition at line 82 of file mux.h.
Referenced by av_get_output_timestamp().
Allows sending messages from application to device.
Definition at line 87 of file mux.h.
Referenced by avdevice_app_to_dev_control_message().
int(* FFOutputFormat::write_uncoded_frame) (AVFormatContext *, int stream_index, AVFrame **frame, unsigned flags) |
Write an uncoded AVFrame.
See av_write_uncoded_frame() for details.
The library will free *frame afterwards, but the muxer can prevent it by setting the pointer to NULL.
Definition at line 98 of file mux.h.
Referenced by av_write_uncoded_frame_query(), write_packet(), and write_uncoded_frame_internal().
int(* FFOutputFormat::get_device_list) (AVFormatContext *s, struct AVDeviceInfoList *device_list) |
Returns device list with it properties.
Definition at line 104 of file mux.h.
Referenced by avdevice_list_devices().
int(* FFOutputFormat::init) (AVFormatContext *) |
Initialize format.
May allocate data here, and set any AVFormatContext or AVStream parameters that need to be set before packets are sent. This method must not write output.
Return 0 if streams were fully configured, 1 if not, negative AVERROR on failure
Any allocations made here must be freed in deinit().
Definition at line 114 of file mux.h.
Referenced by avformat_init_output(), and init_muxer().
void(* FFOutputFormat::deinit) (AVFormatContext *) |
Deinitialize format.
If present, this is called whenever the muxer is being destroyed, regardless of whether or not the header has been written.
If a trailer is being written, this is called after write_trailer().
This is called if init() fails as well.
Definition at line 123 of file mux.h.
Referenced by avformat_free_context(), deinit_muxer(), and init_muxer().
Set up any necessary bitstream filtering and extract any extra data needed for the global header.
Definition at line 132 of file mux.h.
Referenced by check_bitstream(), dash_check_bitstream(), and seg_check_bitstream().