World of Might and Magic  0.2.0
Open reimplementation of Might and Magic 6 7 8 game engine

Muxers take encoded data in the form of AVPackets and write it into files or other output bytestreams in the specified container format. Подробнее...

+ Граф связей класса Muxing:

Классы

struct  AVOutputFormat
 

Определения типов

typedef struct AVOutputFormat AVOutputFormat
 

Функции

av_warn_unused_result int avformat_write_header (AVFormatContext *s, AVDictionary **options)
 
av_warn_unused_result int avformat_init_output (AVFormatContext *s, AVDictionary **options)
 
int av_write_frame (AVFormatContext *s, AVPacket *pkt)
 
int av_interleaved_write_frame (AVFormatContext *s, AVPacket *pkt)
 
int av_write_uncoded_frame (AVFormatContext *s, int stream_index, AVFrame *frame)
 
int av_interleaved_write_uncoded_frame (AVFormatContext *s, int stream_index, AVFrame *frame)
 
int av_write_uncoded_frame_query (AVFormatContext *s, int stream_index)
 
int av_write_trailer (AVFormatContext *s)
 
ff_const59 AVOutputFormatav_guess_format (const char *short_name, const char *filename, const char *mime_type)
 
enum AVCodecID av_guess_codec (ff_const59 AVOutputFormat *fmt, const char *short_name, const char *filename, const char *mime_type, enum AVMediaType type)
 
int av_get_output_timestamp (struct AVFormatContext *s, int stream, int64_t *dts, int64_t *wall)
 

Подробное описание

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().

Типы

◆ AVOutputFormat

Функции

◆ avformat_write_header()

av_warn_unused_result int avformat_write_header ( AVFormatContext s,
AVDictionary **  options 
)

#include <C:/git/world-of-might-and-magic/lib/win32/x86/ffmpeg-4.2.2/include/libavformat/avformat.h>

Allocate the stream private data and write the stream header to an output media file.

Аргументы
sMedia file handle, must be allocated with avformat_alloc_context(). Its oformat field must be set to the desired output format; Its pb field must be set to an already opened AVIOContext.
optionsAn AVDictionary filled with AVFormatContext and muxer-private options. On return this parameter will be destroyed and replaced with a dict containing options that were not found. May be NULL.
Возвращает
AVSTREAM_INIT_IN_WRITE_HEADER on success if the codec had not already been fully initialized in avformat_init, AVSTREAM_INIT_IN_INIT_OUTPUT on success if the codec had already been fully initialized in avformat_init, negative AVERROR on failure.
См. также
av_opt_find, av_dict_set, avio_open, av_oformat_next, avformat_init_output.

◆ avformat_init_output()

av_warn_unused_result int avformat_init_output ( AVFormatContext s,
AVDictionary **  options 
)

#include <C:/git/world-of-might-and-magic/lib/win32/x86/ffmpeg-4.2.2/include/libavformat/avformat.h>

Allocate the stream private data and initialize the codec, but do not write the header. May optionally be used before avformat_write_header to initialize stream parameters before actually writing the header. If using this function, do not pass the same options to avformat_write_header.

Аргументы
sMedia file handle, must be allocated with avformat_alloc_context(). Its oformat field must be set to the desired output format; Its pb field must be set to an already opened AVIOContext.
optionsAn AVDictionary filled with AVFormatContext and muxer-private options. On return this parameter will be destroyed and replaced with a dict containing options that were not found. May be NULL.
Возвращает
AVSTREAM_INIT_IN_WRITE_HEADER on success if the codec requires avformat_write_header to fully initialize, AVSTREAM_INIT_IN_INIT_OUTPUT on success if the codec has been fully initialized, negative AVERROR on failure.
См. также
av_opt_find, av_dict_set, avio_open, av_oformat_next, avformat_write_header.

◆ av_write_frame()

int av_write_frame ( AVFormatContext s,
AVPacket pkt 
)

#include <C:/git/world-of-might-and-magic/lib/win32/x86/ffmpeg-4.2.2/include/libavformat/avformat.h>

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.

Аргументы
smedia file handle
pktThe packet containing the data to be written. Note that unlike av_interleaved_write_frame(), this function does not take ownership of the packet passed to it (though some muxers may make an internal reference to the input packet).
This parameter can be NULL (at any time, not just at the end), in order to immediately flush data buffered within the muxer, for muxers that buffer up data internally before writing it to the output.
Packet's stream_index field must be set to the index of the corresponding stream in s->streams.
The timestamps (pts, dts) must be set to correct values in the stream's timebase (unless the output format is flagged with the AVFMT_NOTIMESTAMPS flag, then they can be set to AV_NOPTS_VALUE). The dts for subsequent packets passed to this function must be strictly increasing when compared in their respective timebases (unless the output format is flagged with the AVFMT_TS_NONSTRICT, then they merely have to be nondecreasing). duration) should also be set if known.
Возвращает
< 0 on error, = 0 if OK, 1 if flushed and there is no more data to flush
См. также
av_interleaved_write_frame()

◆ av_interleaved_write_frame()

int av_interleaved_write_frame ( AVFormatContext s,
AVPacket pkt 
)

#include <C:/git/world-of-might-and-magic/lib/win32/x86/ffmpeg-4.2.2/include/libavformat/avformat.h>

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.

Using this function instead of av_write_frame() can give muxers advance knowledge of future packets, improving e.g. the behaviour of the mp4 muxer for VFR content in fragmenting mode.

Аргументы
smedia file handle
pktThe packet containing the data to be written.
If the packet is reference-counted, this function will take ownership of this reference and unreference it later when it sees fit. The caller must not access the data through this reference after this function returns. If the packet is not reference-counted, libavformat will make a copy.
This parameter can be NULL (at any time, not just at the end), to flush the interleaving queues.
Packet's stream_index field must be set to the index of the corresponding stream in s->streams.
The timestamps (pts, dts) must be set to correct values in the stream's timebase (unless the output format is flagged with the AVFMT_NOTIMESTAMPS flag, then they can be set to AV_NOPTS_VALUE). The dts for subsequent packets in one stream must be strictly increasing (unless the output format is flagged with the AVFMT_TS_NONSTRICT, then they merely have to be nondecreasing). duration) should also be set if known.
Возвращает
0 on success, a negative AVERROR on error. Libavformat will always take care of freeing the packet, even if this function fails.
См. также
av_write_frame(), AVFormatContext.max_interleave_delta

◆ av_write_uncoded_frame()

int av_write_uncoded_frame ( AVFormatContext s,
int  stream_index,
AVFrame frame 
)

#include <C:/git/world-of-might-and-magic/lib/win32/x86/ffmpeg-4.2.2/include/libavformat/avformat.h>

Write an 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.

◆ av_interleaved_write_uncoded_frame()

int av_interleaved_write_uncoded_frame ( AVFormatContext s,
int  stream_index,
AVFrame frame 
)

#include <C:/git/world-of-might-and-magic/lib/win32/x86/ffmpeg-4.2.2/include/libavformat/avformat.h>

Write an uncoded frame to an output media file.

If the muxer supports it, this function makes it possible 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.

Возвращает
>=0 for success, a negative code on error

◆ av_write_uncoded_frame_query()

int av_write_uncoded_frame_query ( AVFormatContext s,
int  stream_index 
)

#include <C:/git/world-of-might-and-magic/lib/win32/x86/ffmpeg-4.2.2/include/libavformat/avformat.h>

Test whether a muxer supports uncoded frame.

Возвращает
>=0 if an uncoded frame can be written to that muxer and stream, <0 if not

◆ av_write_trailer()

int av_write_trailer ( AVFormatContext s)

#include <C:/git/world-of-might-and-magic/lib/win32/x86/ffmpeg-4.2.2/include/libavformat/avformat.h>

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.

Аргументы
smedia file handle
Возвращает
0 if OK, AVERROR_xxx on error

◆ av_guess_format()

ff_const59 AVOutputFormat* av_guess_format ( const char *  short_name,
const char *  filename,
const char *  mime_type 
)

#include <C:/git/world-of-might-and-magic/lib/win32/x86/ffmpeg-4.2.2/include/libavformat/avformat.h>

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.

Аргументы
short_nameif non-NULL checks if short_name matches with the names of the registered formats
filenameif non-NULL checks if filename terminates with the extensions of the registered formats
mime_typeif non-NULL checks if mime_type matches with the MIME type of the registered formats

◆ av_guess_codec()

enum AVCodecID av_guess_codec ( ff_const59 AVOutputFormat fmt,
const char *  short_name,
const char *  filename,
const char *  mime_type,
enum AVMediaType  type 
)

#include <C:/git/world-of-might-and-magic/lib/win32/x86/ffmpeg-4.2.2/include/libavformat/avformat.h>

Guess the codec ID based upon muxer and filename.

◆ av_get_output_timestamp()

int av_get_output_timestamp ( struct AVFormatContext s,
int  stream,
int64_t dts,
int64_t wall 
)

#include <C:/git/world-of-might-and-magic/lib/win32/x86/ffmpeg-4.2.2/include/libavformat/avformat.h>

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.

Аргументы
smedia file handle
streamstream in the media file
[out]dtsDTS of the last packet output for the stream, in stream time_base units
[out]wallabsolute time when that packet whas output, in microsecond
Возвращает
0 if OK, AVERROR(ENOSYS) if the format does not support it Note: some formats or devices may not allow to measure dts and wall atomically.