Libav
|
#include <avformat.h>
Data Fields | |
const char * | name |
const char * | long_name |
Descriptive name for the format, meant to be more human-readable than name. More... | |
const char * | mime_type |
const char * | extensions |
comma-separated filename extensions More... | |
enum AVCodecID | audio_codec |
default audio codec More... | |
enum AVCodecID | video_codec |
default video codec More... | |
enum AVCodecID | subtitle_codec |
default subtitle codec More... | |
int | flags |
can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER, AVFMT_RAWPICTURE, AVFMT_GLOBALHEADER, AVFMT_NOTIMESTAMPS, AVFMT_VARIABLE_FPS, AVFMT_NODIMENSIONS, AVFMT_NOSTREAMS, AVFMT_ALLOW_FLUSH, AVFMT_TS_NONSTRICT More... | |
const struct AVCodecTag *const * | codec_tag |
List of supported codec_id-codec_tag pairs, ordered by "better
choice first". More... | |
const AVClass * | priv_class |
AVClass for the private context. More... | |
struct AVOutputFormat * | next |
int | priv_data_size |
size of private data so that it can be allocated in the wrapper More... | |
int(* | write_header )(struct AVFormatContext *) |
int(* | write_packet )(struct AVFormatContext *, AVPacket *pkt) |
Write a packet. More... | |
int(* | write_trailer )(struct AVFormatContext *) |
int(* | interleave_packet )(struct AVFormatContext *, AVPacket *out, AVPacket *in, int flush) |
Currently only used to set pixel format if not YUV420P. More... | |
int(* | query_codec )(enum AVCodecID id, int std_compliance) |
Test if the given codec can be stored in this container. More... | |
Definition at line 445 of file avformat.h.
const char* AVOutputFormat::name |
Definition at line 446 of file avformat.h.
Referenced by amr_read_packet(), asf_write_trailer(), av_dump_format(), av_guess_codec(), av_guess_format(), ff_raw_write_packet(), format_to_name(), md5_finish(), mkv_write_header(), mmf_read_packet(), mov_write_header(), mov_write_trailer(), mp3_write_trailer(), seg_write_header(), show_formats(), show_help_muxer(), swf_write_header(), swf_write_trailer(), and transcode_init().
const char* AVOutputFormat::long_name |
Descriptive name for the format, meant to be more human-readable than name.
You should use the NULL_IF_CONFIG_SMALL() macro to define it.
Definition at line 452 of file avformat.h.
Referenced by show_formats(), and show_help_muxer().
const char* AVOutputFormat::mime_type |
Definition at line 453 of file avformat.h.
Referenced by av_guess_format(), and show_help_muxer().
const char* AVOutputFormat::extensions |
comma-separated filename extensions
Definition at line 454 of file avformat.h.
Referenced by av_guess_format(), and show_help_muxer().
enum AVCodecID AVOutputFormat::audio_codec |
default audio codec
Definition at line 456 of file avformat.h.
Referenced by av_guess_codec(), avformat_query_codec(), main(), open_output_file(), and show_help_muxer().
enum AVCodecID AVOutputFormat::video_codec |
default video codec
Definition at line 457 of file avformat.h.
Referenced by av_guess_codec(), avformat_query_codec(), main(), open_output_file(), and show_help_muxer().
enum AVCodecID AVOutputFormat::subtitle_codec |
default subtitle codec
Definition at line 458 of file avformat.h.
Referenced by av_guess_codec(), avformat_query_codec(), open_output_file(), and show_help_muxer().
int AVOutputFormat::flags |
can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER, AVFMT_RAWPICTURE, AVFMT_GLOBALHEADER, AVFMT_NOTIMESTAMPS, AVFMT_VARIABLE_FPS, AVFMT_NODIMENSIONS, AVFMT_NOSTREAMS, AVFMT_ALLOW_FLUSH, AVFMT_TS_NONSTRICT
Definition at line 465 of file avformat.h.
Referenced by add_audio_stream(), add_video_stream(), av_interleaved_write_frame(), av_write_frame(), av_write_trailer(), avconv_cleanup(), compute_pkt_fields2(), do_video_out(), dump_stream_format(), flush_encoders(), init_muxer(), main(), new_output_stream(), open_output_file(), seg_write_header(), transcode_init(), write_frame(), write_header(), write_packet(), and write_video_frame().
const struct AVCodecTag* const* AVOutputFormat::codec_tag |
List of supported codec_id-codec_tag pairs, ordered by "better choice first".
The arrays are all terminated by AV_CODEC_ID_NONE.
Definition at line 471 of file avformat.h.
Referenced by avformat_query_codec(), init_muxer(), transcode_init(), and validate_codec_tag().
const AVClass* AVOutputFormat::priv_class |
AVClass for the private context.
Definition at line 474 of file avformat.h.
Referenced by av_write_trailer(), ff_rtp_get_payload_type(), format_child_class_next(), format_child_next(), hls_start(), init_muxer(), segment_start(), and show_help_muxer().
struct AVOutputFormat* AVOutputFormat::next |
Definition at line 483 of file avformat.h.
Referenced by av_oformat_next(), and av_register_output_format().
int AVOutputFormat::priv_data_size |
size of private data so that it can be allocated in the wrapper
Definition at line 487 of file avformat.h.
Referenced by init_muxer().
int(* AVOutputFormat::write_header) (struct AVFormatContext *) |
Definition at line 489 of file avformat.h.
Referenced by avformat_write_header().
int(* AVOutputFormat::write_packet) (struct 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 497 of file avformat.h.
Referenced by av_write_frame(), and write_packet().
int(* AVOutputFormat::write_trailer) (struct AVFormatContext *) |
Definition at line 498 of file avformat.h.
Referenced by av_write_trailer().
int(* AVOutputFormat::interleave_packet) (struct AVFormatContext *, AVPacket *out, AVPacket *in, int flush) |
Currently only used to set pixel format if not YUV420P.
Definition at line 502 of file avformat.h.
Referenced by interleave_packet().
Test if the given codec can be stored in this container.
Definition at line 510 of file avformat.h.
Referenced by avformat_query_codec().