FFmpeg 5.1.6
|
Functions for querying libavformat capabilities, allocating core structures, etc. More...
Functions | |
unsigned | avformat_version (void) |
Return the LIBAVFORMAT_VERSION_INT constant. More... | |
const char * | avformat_configuration (void) |
Return the libavformat build-time configuration. More... | |
const char * | avformat_license (void) |
Return the libavformat license. More... | |
int | avformat_network_init (void) |
Do global initialization of network libraries. More... | |
int | avformat_network_deinit (void) |
Undo the initialization done by avformat_network_init. More... | |
const AVOutputFormat * | av_muxer_iterate (void **opaque) |
Iterate over all registered muxers. More... | |
const AVInputFormat * | av_demuxer_iterate (void **opaque) |
Iterate over all registered demuxers. More... | |
AVFormatContext * | avformat_alloc_context (void) |
Allocate an AVFormatContext. More... | |
void | avformat_free_context (AVFormatContext *s) |
Free an AVFormatContext and all its streams. More... | |
const AVClass * | avformat_get_class (void) |
Get the AVClass for AVFormatContext. More... | |
const AVClass * | av_stream_get_class (void) |
Get the AVClass for AVStream. More... | |
AVStream * | avformat_new_stream (AVFormatContext *s, const AVCodec *c) |
Add a new stream to a media file. More... | |
int | av_stream_add_side_data (AVStream *st, enum AVPacketSideDataType type, uint8_t *data, size_t size) |
Wrap an existing array as stream side data. More... | |
uint8_t * | av_stream_new_side_data (AVStream *stream, enum AVPacketSideDataType type, size_t size) |
Allocate new information from stream. More... | |
uint8_t * | av_stream_get_side_data (const AVStream *stream, enum AVPacketSideDataType type, size_t *size) |
Get side information from stream. More... | |
AVProgram * | av_new_program (AVFormatContext *s, int id) |
Functions for querying libavformat capabilities, allocating core structures, etc.
unsigned avformat_version | ( | void | ) |
Return the LIBAVFORMAT_VERSION_INT constant.
const char * avformat_configuration | ( | void | ) |
Return the libavformat build-time configuration.
const char * avformat_license | ( | void | ) |
Return the libavformat license.
int avformat_network_init | ( | void | ) |
Do global initialization of network libraries.
This is optional, and not recommended anymore.
This functions only exists to work around thread-safety issues with older GnuTLS or OpenSSL libraries. If libavformat is linked to newer versions of those libraries, or if you do not use them, calling this function is unnecessary. Otherwise, you need to call this function before any other threads using them are started.
This function will be deprecated once support for older GnuTLS and OpenSSL libraries is removed, and this function has no purpose anymore.
Referenced by main().
int avformat_network_deinit | ( | void | ) |
Undo the initialization done by avformat_network_init.
Call it only once for each time you called avformat_network_init.
Referenced by main().
const AVOutputFormat * av_muxer_iterate | ( | void ** | opaque | ) |
Iterate over all registered muxers.
opaque | a pointer where libavformat will store the iteration state. Must point to NULL to start the iteration. |
const AVInputFormat * av_demuxer_iterate | ( | void ** | opaque | ) |
Iterate over all registered demuxers.
opaque | a pointer where libavformat will store the iteration state. Must point to NULL to start the iteration. |
AVFormatContext * avformat_alloc_context | ( | void | ) |
Allocate an AVFormatContext.
avformat_free_context() can be used to free the context and everything allocated by the framework within it.
Referenced by main(), and open_output_file().
void avformat_free_context | ( | AVFormatContext * | s | ) |
Free an AVFormatContext and all its streams.
s | context to free |
Referenced by main(), and open_output_file().
const AVClass * avformat_get_class | ( | void | ) |
Get the AVClass for AVFormatContext.
It can be used in combination with AV_OPT_SEARCH_FAKE_OBJ for examining options.
const AVClass * av_stream_get_class | ( | void | ) |
It can be used in combination with AV_OPT_SEARCH_FAKE_OBJ for examining options.
AVStream * avformat_new_stream | ( | AVFormatContext * | s, |
const AVCodec * | c | ||
) |
Add a new stream to a media file.
When demuxing, it is called by the demuxer in read_header(). If the flag AVFMTCTX_NOHEADER is set in s.ctx_flags, then it may also be called in read_packet().
When muxing, should be called by the user before avformat_write_header().
User is required to call avformat_free_context() to clean up the allocation by avformat_new_stream().
s | media file handle |
c | unused, does nothing |
Referenced by add_stream(), dec_enc(), main(), and open_output_file().
int av_stream_add_side_data | ( | AVStream * | st, |
enum AVPacketSideDataType | type, | ||
uint8_t * | data, | ||
size_t | size | ||
) |
Wrap an existing array as stream side data.
st | stream |
type | side information type |
data | the side data array. It must be allocated with the av_malloc() family of functions. The ownership of the data is transferred to st. |
size | side information size |
uint8_t * av_stream_new_side_data | ( | AVStream * | stream, |
enum AVPacketSideDataType | type, | ||
size_t | size | ||
) |
Allocate new information from stream.
stream | stream |
type | desired side information type |
size | side information size |
uint8_t * av_stream_get_side_data | ( | const AVStream * | stream, |
enum AVPacketSideDataType | type, | ||
size_t * | size | ||
) |
Get side information from stream.
stream | stream |
type | desired side information type |
size | If supplied, *size will be set to the size of the side data or to zero if the desired side data is not present. |
AVProgram * av_new_program | ( | AVFormatContext * | s, |
int | id | ||
) |