FFmpeg
|
Miscellaneous utility functions related to both encoding and decoding (or neither). More...
Modules | |
Pixel formats | |
Functions for working with pixel formats. | |
FFT functions | |
Data Structures | |
struct | AVBitStreamFilterContext |
struct | AVBSFContext |
The bitstream filter state. More... | |
struct | AVBitStreamFilter |
Enumerations | |
enum | AVLockOp { AV_LOCK_CREATE, AV_LOCK_OBTAIN, AV_LOCK_RELEASE, AV_LOCK_DESTROY } |
Lock operation used by lockmgr. More... | |
Functions | |
attribute_deprecated void | avcodec_set_dimensions (AVCodecContext *s, int width, int height) |
size_t | av_get_codec_tag_string (char *buf, size_t buf_size, unsigned int codec_tag) |
Put a string representing the codec tag codec_tag in buf. More... | |
void | avcodec_string (char *buf, int buf_size, AVCodecContext *enc, int encode) |
const char * | av_get_profile_name (const AVCodec *codec, int profile) |
Return a name for the specified profile, if available. More... | |
const char * | avcodec_profile_name (enum AVCodecID codec_id, int profile) |
Return a name for the specified profile, if available. More... | |
int | avcodec_default_execute (AVCodecContext *c, int(*func)(AVCodecContext *c2, void *arg2), void *arg, int *ret, int count, int size) |
int | avcodec_default_execute2 (AVCodecContext *c, int(*func)(AVCodecContext *c2, void *arg2, int, int), void *arg, int *ret, int count) |
int | avcodec_fill_audio_frame (AVFrame *frame, int nb_channels, enum AVSampleFormat sample_fmt, const uint8_t *buf, int buf_size, int align) |
Fill AVFrame audio data and linesize pointers. More... | |
void | avcodec_flush_buffers (AVCodecContext *avctx) |
Reset the internal decoder state / flush internal buffers. More... | |
int | av_get_bits_per_sample (enum AVCodecID codec_id) |
Return codec bits per sample. More... | |
enum AVCodecID | av_get_pcm_codec (enum AVSampleFormat fmt, int be) |
Return the PCM codec associated with a sample format. More... | |
int | av_get_exact_bits_per_sample (enum AVCodecID codec_id) |
Return codec bits per sample. More... | |
int | av_get_audio_frame_duration (AVCodecContext *avctx, int frame_bytes) |
Return audio frame duration. More... | |
int | av_get_audio_frame_duration2 (AVCodecParameters *par, int frame_bytes) |
This function is the same as av_get_audio_frame_duration(), except it works with AVCodecParameters instead of an AVCodecContext. More... | |
attribute_deprecated void | av_register_bitstream_filter (AVBitStreamFilter *bsf) |
Register a bitstream filter. More... | |
attribute_deprecated AVBitStreamFilterContext * | av_bitstream_filter_init (const char *name) |
Create and initialize a bitstream filter context given a bitstream filter name. More... | |
attribute_deprecated int | av_bitstream_filter_filter (AVBitStreamFilterContext *bsfc, AVCodecContext *avctx, const char *args, uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size, int keyframe) |
Filter bitstream. More... | |
attribute_deprecated void | av_bitstream_filter_close (AVBitStreamFilterContext *bsf) |
Release bitstream filter context. More... | |
attribute_deprecated AVBitStreamFilter * | av_bitstream_filter_next (const AVBitStreamFilter *f) |
If f is NULL, return the first registered bitstream filter, if f is non-NULL, return the next registered bitstream filter after f, or NULL if f is the last one. More... | |
const AVBitStreamFilter * | av_bsf_get_by_name (const char *name) |
const AVBitStreamFilter * | av_bsf_next (void **opaque) |
Iterate over all registered bitstream filters. More... | |
int | av_bsf_alloc (const AVBitStreamFilter *filter, AVBSFContext **ctx) |
Allocate a context for a given bitstream filter. More... | |
int | av_bsf_init (AVBSFContext *ctx) |
Prepare the filter for use, after all the parameters and options have been set. More... | |
int | av_bsf_send_packet (AVBSFContext *ctx, AVPacket *pkt) |
Submit a packet for filtering. More... | |
int | av_bsf_receive_packet (AVBSFContext *ctx, AVPacket *pkt) |
Retrieve a filtered packet. More... | |
void | av_bsf_free (AVBSFContext **ctx) |
Free a bitstream filter context and everything associated with it; write NULL into the supplied pointer. More... | |
const AVClass * | av_bsf_get_class (void) |
Get the AVClass for AVBSFContext. More... | |
AVBSFList * | av_bsf_list_alloc (void) |
Allocate empty list of bitstream filters. More... | |
void | av_bsf_list_free (AVBSFList **lst) |
Free list of bitstream filters. More... | |
int | av_bsf_list_append (AVBSFList *lst, AVBSFContext *bsf) |
Append bitstream filter to the list of bitstream filters. More... | |
int | av_bsf_list_append2 (AVBSFList *lst, const char *bsf_name, AVDictionary **options) |
Construct new bitstream filter context given it's name and options and append it to the list of bitstream filters. More... | |
int | av_bsf_list_finalize (AVBSFList **lst, AVBSFContext **bsf) |
Finalize list of bitstream filters. More... | |
int | av_bsf_list_parse_str (const char *str, AVBSFContext **bsf) |
Parse string describing list of bitstream filters and create single AVBSFContext describing the whole chain of bitstream filters. More... | |
int | av_bsf_get_null_filter (AVBSFContext **bsf) |
Get null/pass-through bitstream filter. More... | |
void | av_fast_padded_malloc (void *ptr, unsigned int *size, size_t min_size) |
Same behaviour av_fast_malloc but the buffer has additional AV_INPUT_BUFFER_PADDING_SIZE at the end which will always be 0. More... | |
void | av_fast_padded_mallocz (void *ptr, unsigned int *size, size_t min_size) |
Same behaviour av_fast_padded_malloc except that buffer will always be 0-initialized after call. More... | |
unsigned int | av_xiphlacing (unsigned char *s, unsigned int v) |
Encode extradata length to a buffer. More... | |
attribute_deprecated void | av_log_missing_feature (void *avc, const char *feature, int want_sample) |
Log a generic warning message about a missing feature. More... | |
attribute_deprecated void | av_log_ask_for_sample (void *avc, const char *msg,...) av_printf_format(2 |
Log a generic warning message asking for a sample. More... | |
attribute_deprecated void void | av_register_hwaccel (AVHWAccel *hwaccel) |
Register the hardware accelerator hwaccel. More... | |
AVHWAccel * | av_hwaccel_next (const AVHWAccel *hwaccel) |
If hwaccel is NULL, returns the first registered hardware accelerator, if hwaccel is non-NULL, returns the next registered hardware accelerator after hwaccel, or NULL if hwaccel is the last one. More... | |
int | av_lockmgr_register (int(*cb)(void **mutex, enum AVLockOp op)) |
Register a user provided lock manager supporting the operations specified by AVLockOp. More... | |
enum AVMediaType | avcodec_get_type (enum AVCodecID codec_id) |
Get the type of the given codec. More... | |
const char * | avcodec_get_name (enum AVCodecID id) |
Get the name of a codec. More... | |
int | avcodec_is_open (AVCodecContext *s) |
int | av_codec_is_encoder (const AVCodec *codec) |
int | av_codec_is_decoder (const AVCodec *codec) |
const AVCodecDescriptor * | avcodec_descriptor_get (enum AVCodecID id) |
const AVCodecDescriptor * | avcodec_descriptor_next (const AVCodecDescriptor *prev) |
Iterate over all codec descriptors known to libavcodec. More... | |
const AVCodecDescriptor * | avcodec_descriptor_get_by_name (const char *name) |
AVCPBProperties * | av_cpb_properties_alloc (size_t *size) |
Allocate a CPB properties structure and initialize its fields to default values. More... | |
Miscellaneous utility functions related to both encoding and decoding (or neither).
enum AVLockOp |
attribute_deprecated void avcodec_set_dimensions | ( | AVCodecContext * | s, |
int | width, | ||
int | height | ||
) |
size_t av_get_codec_tag_string | ( | char * | buf, |
size_t | buf_size, | ||
unsigned int | codec_tag | ||
) |
Put a string representing the codec tag codec_tag in buf.
buf | buffer to place codec tag in |
buf_size | size in bytes of buf |
codec_tag | codec tag to assign |
Definition at line 3166 of file utils.c.
Referenced by apng_read_packet(), avcodec_string(), avi_read_header(), control_port_cb(), decode_frame(), ffmmal_init_decoder(), ffmmal_read_frame(), get_aiff_header(), init_muxer(), main(), matroska_parse_tracks(), mjpeg_decode_app(), mov_write_hdlr_tag(), parse_pixel_format(), print_pix_fmt_fourccs(), rsd_read_header(), show_stream(), and videotoolbox_retrieve_data().
void avcodec_string | ( | char * | buf, |
int | buf_size, | ||
AVCodecContext * | enc, | ||
int | encode | ||
) |
Definition at line 3186 of file utils.c.
Referenced by avformat_find_stream_info(), and dump_stream_format().
const char* av_get_profile_name | ( | const AVCodec * | codec, |
int | profile | ||
) |
const char* avcodec_profile_name | ( | enum AVCodecID | codec_id, |
int | profile | ||
) |
Return a name for the specified profile, if available.
codec_id | the ID of the codec to which the requested profile belongs |
profile | the profile value for which a name is requested |
Definition at line 3397 of file utils.c.
Referenced by avcodec_string(), and show_stream().
int avcodec_default_execute | ( | AVCodecContext * | c, |
int(*)(AVCodecContext *c2, void *arg2) | func, | ||
void * | arg, | ||
int * | ret, | ||
int | count, | ||
int | size | ||
) |
Definition at line 1004 of file utils.c.
Referenced by init_context_defaults(), and thread_execute().
int avcodec_default_execute2 | ( | AVCodecContext * | c, |
int(*)(AVCodecContext *c2, void *arg2, int, int) | func, | ||
void * | arg, | ||
int * | ret, | ||
int | count | ||
) |
Referenced by init_context_defaults().
int avcodec_fill_audio_frame | ( | AVFrame * | frame, |
int | nb_channels, | ||
enum AVSampleFormat | sample_fmt, | ||
const uint8_t * | buf, | ||
int | buf_size, | ||
int | align | ||
) |
Fill AVFrame audio data and linesize pointers.
The buffer buf must be a preallocated buffer with a size big enough to contain the specified samples amount. The filled AVFrame data pointers will point to this buffer.
AVFrame extended_data channel pointers are allocated if necessary for planar audio.
frame | the AVFrame frame->nb_samples must be set prior to calling the function. This function fills in frame->data, frame->extended_data, frame->linesize[0]. |
nb_channels | channel count |
sample_fmt | sample format |
buf | buffer to use for frame data |
buf_size | size of buffer |
align | plane size sample alignment (0 = default) |
Definition at line 470 of file utils.c.
Referenced by audio_encode_example().
void avcodec_flush_buffers | ( | AVCodecContext * | avctx | ) |
Reset the internal decoder state / flush internal buffers.
Should be called e.g. when seeking or when switching to a different stream.
Definition at line 3435 of file utils.c.
Referenced by compute_crc_of_packets(), decoder_decode_frame(), process_command(), rewind_file(), and seek_to_start().
int av_get_bits_per_sample | ( | enum AVCodecID | codec_id | ) |
Return codec bits per sample.
[in] | codec_id | the codec |
Definition at line 3535 of file utils.c.
Referenced by adpcm_encode_init(), aiff_write_header(), avformat_find_stream_info(), caf_write_header(), epaf_read_header(), ff_alsa_open(), ff_audio_interleave_init(), ff_pcm_read_seek(), ff_put_wav_header(), ff_voc_get_packet(), g722_read_header(), get_aiff_header(), get_bit_rate(), gxf_packet(), iff_read_header(), init_muxer(), ircam_read_header(), mkv_write_track(), mov_get_codec_tag(), mov_init(), mov_parse_stsd_audio(), mov_write_audio_tag(), mxf_handle_missing_index_segment(), mxf_set_audio_pts(), mxf_write_generic_sound_common(), mxf_write_header(), oma_read_header(), pcm_decode_frame(), pcm_decode_init(), pcm_encode_frame(), pcm_encode_init(), pcm_read_header(), pulse_read_packet(), read_header(), rso_read_header(), show_stream(), and wve_read_header().
enum AVCodecID av_get_pcm_codec | ( | enum AVSampleFormat | fmt, |
int | be | ||
) |
Return the PCM codec associated with a sample format.
be | endianness, 0 for little, 1 for big, -1 (or anything else) for native |
Definition at line 3513 of file utils.c.
Referenced by lavfi_read_header(), and main().
int av_get_exact_bits_per_sample | ( | enum AVCodecID | codec_id | ) |
Return codec bits per sample.
Only return non-zero if the bits per sample is exactly correct, not an approximation.
[in] | codec_id | the codec |
Definition at line 3455 of file utils.c.
Referenced by av_get_bits_per_sample(), get_audio_frame_duration(), and new_output_stream().
int av_get_audio_frame_duration | ( | AVCodecContext * | avctx, |
int | frame_bytes | ||
) |
Return audio frame duration.
avctx | codec context |
frame_bytes | size of the frame, or 0 if unknown |
Definition at line 3737 of file utils.c.
Referenced by do_streamcopy().
int av_get_audio_frame_duration2 | ( | AVCodecParameters * | par, |
int | frame_bytes | ||
) |
This function is the same as av_get_audio_frame_duration(), except it works with AVCodecParameters instead of an AVCodecContext.
Definition at line 3746 of file utils.c.
Referenced by adp_read_header(), build_frame_code(), ff_parse_specific_params(), ff_put_wav_header(), ff_voc_get_packet(), get_aiff_header(), mpegts_init(), msf_read_header(), rm_write_header(), rsd_read_header(), rtp_send_ilbc(), and swf_write_audio().
attribute_deprecated void av_register_bitstream_filter | ( | AVBitStreamFilter * | bsf | ) |
Register a bitstream filter.
The filter will be accessible to the application code through av_bitstream_filter_next() or can be directly initialized with av_bitstream_filter_init().
Definition at line 43 of file bitstream_filter.c.
attribute_deprecated AVBitStreamFilterContext* av_bitstream_filter_init | ( | const char * | name | ) |
Create and initialize a bitstream filter context given a bitstream filter name.
The returned context must be freed with av_bitstream_filter_close().
name | the name of the bitstream filter |
Definition at line 52 of file bitstream_filter.c.
Referenced by detect_stream_specific().
attribute_deprecated int av_bitstream_filter_filter | ( | AVBitStreamFilterContext * | bsfc, |
AVCodecContext * | avctx, | ||
const char * | args, | ||
uint8_t ** | poutbuf, | ||
int * | poutbuf_size, | ||
const uint8_t * | buf, | ||
int | buf_size, | ||
int | keyframe | ||
) |
Filter bitstream.
This function filters the buffer buf with size buf_size, and places the filtered buffer in the buffer pointed to by poutbuf.
The output buffer must be freed by the caller.
bsfc | bitstream filter context created by av_bitstream_filter_init() |
avctx | AVCodecContext accessed by the filter, may be NULL. If specified, this must point to the encoder context of the output stream the packet is sent to. |
args | arguments which specify the filter configuration, may be NULL |
poutbuf | pointer which is updated to point to the filtered buffer |
poutbuf_size | pointer which is updated to the filtered buffer size in bytes |
buf | buffer containing the data to filter |
buf_size | size in bytes of buf |
keyframe | set to non-zero if the buffer to filter corresponds to a key-frame packet data |
If the return value is positive, an output buffer is allocated and is available in *poutbuf, and is distinct from the input buffer.
If the return value is 0, the output buffer is not allocated and should be considered identical to the input buffer, or in case *poutbuf was set it points to the input buffer (not necessarily to its starting address). A special case is if *poutbuf was set to NULL and *poutbuf_size was set to 0, which indicates the packet should be dropped.
Definition at line 98 of file bitstream_filter.c.
Referenced by filter_packet().
attribute_deprecated void av_bitstream_filter_close | ( | AVBitStreamFilterContext * | bsf | ) |
Release bitstream filter context.
bsf | the bitstream filter context created with av_bitstream_filter_init(), can be NULL |
Definition at line 84 of file bitstream_filter.c.
Referenced by concat_read_close().
attribute_deprecated AVBitStreamFilter* av_bitstream_filter_next | ( | const AVBitStreamFilter * | f | ) |
If f is NULL, return the first registered bitstream filter, if f is non-NULL, return the next registered bitstream filter after f, or NULL if f is the last one.
This function can be used to iterate over all registered bitstream filters.
Definition at line 32 of file bitstream_filter.c.
const AVBitStreamFilter* av_bsf_get_by_name | ( | const char * | name | ) |
Definition at line 57 of file bitstream_filters.c.
Referenced by av_bitstream_filter_init(), av_bsf_list_append2(), cuvid_decode_init(), ff_stream_add_bitstream_filter(), ffat_decode(), init_bsf(), mediacodec_decode_init(), new_output_stream(), and qsv_init_bsf().
const AVBitStreamFilter* av_bsf_next | ( | void ** | opaque | ) |
Iterate over all registered bitstream filters.
opaque | a pointer where libavcodec will store the iteration state. Must point to NULL to start the iteration. |
Definition at line 46 of file bitstream_filters.c.
Referenced by av_bitstream_filter_next(), and show_bsfs().
int av_bsf_alloc | ( | const AVBitStreamFilter * | filter, |
AVBSFContext ** | ctx | ||
) |
Allocate a context for a given bitstream filter.
The caller must fill in the context parameters as described in the documentation and then call av_bsf_init() before sending any data to the filter.
filter | the filter for which to allocate an instance. |
ctx | a pointer into which the pointer to the newly-allocated context will be written. It must be freed with av_bsf_free() after the filtering is done. |
Definition at line 82 of file bsf.c.
Referenced by av_bitstream_filter_filter(), av_bsf_get_null_filter(), av_bsf_list_append2(), av_bsf_list_finalize(), cuvid_decode_init(), ff_stream_add_bitstream_filter(), ffat_decode(), init_bsf(), mediacodec_decode_init(), new_output_stream(), and qsv_init_bsf().
int av_bsf_init | ( | AVBSFContext * | ctx | ) |
Prepare the filter for use, after all the parameters and options have been set.
Definition at line 135 of file bsf.c.
Referenced by av_bitstream_filter_filter(), bsf_list_init(), cuvid_decode_init(), ff_stream_add_bitstream_filter(), ffat_decode(), init_bsf(), init_output_bsfs(), mediacodec_decode_init(), open_slave(), and qsv_init_bsf().
int av_bsf_send_packet | ( | AVBSFContext * | ctx, |
AVPacket * | pkt | ||
) |
Submit a packet for filtering.
After sending each packet, the filter must be completely drained by calling av_bsf_receive_packet() repeatedly until it returns AVERROR(EAGAIN) or AVERROR_EOF.
pkt | the packet to filter. pkt must contain some payload (i.e data or side data must be present in pkt). The bitstream filter will take ownership of the packet and reset the contents of pkt. pkt is not touched if an error occurs. This parameter may be NULL, which signals the end of the stream (i.e. no more packets will be sent). That will cause the filter to output any packets it may have buffered internally. |
Definition at line 176 of file bsf.c.
Referenced by av_bitstream_filter_filter(), bsf_list_filter(), decode(), do_packet_auto_bsf(), ffat_decode(), mediacodec_decode_frame(), output_packet(), qsv_decode_frame(), svc_decode_frame(), and tee_write_packet().
int av_bsf_receive_packet | ( | AVBSFContext * | ctx, |
AVPacket * | pkt | ||
) |
Retrieve a filtered packet.
[out] | pkt | this struct will be filled with the contents of the filtered packet. It is owned by the caller and must be freed using av_packet_unref() when it is no longer needed. This parameter should be "clean" (i.e. freshly allocated with av_packet_alloc() or unreffed with av_packet_unref()) when this function is called. If this function returns successfully, the contents of pkt will be completely overwritten by the returned data. On failure, pkt is not touched. |
Definition at line 199 of file bsf.c.
Referenced by av_bitstream_filter_filter(), bsf_list_filter(), decode(), do_packet_auto_bsf(), ffat_decode(), mediacodec_decode_frame(), output_packet(), qsv_decode_frame(), svc_decode_frame(), and tee_write_packet().
void av_bsf_free | ( | AVBSFContext ** | ctx | ) |
Free a bitstream filter context and everything associated with it; write NULL into the supplied pointer.
Definition at line 36 of file bsf.c.
Referenced by av_bitstream_filter_close(), av_bitstream_filter_init(), av_bsf_alloc(), av_bsf_list_append2(), av_bsf_list_free(), bsf_list_close(), close_slave(), cuvid_decode_end(), cuvid_decode_init(), ff_stream_add_bitstream_filter(), ffat_close_decoder(), ffat_decode(), ffmpeg_cleanup(), free_stream(), mediacodec_decode_close(), qsv_clear_buffers(), svc_decode_close(), and uninit().
Get the AVClass for AVBSFContext.
It can be used in combination with AV_OPT_SEARCH_FAKE_OBJ for examining options.
Allocate empty list of bitstream filters.
The list must be later freed by av_bsf_list_free() or finalized by av_bsf_list_finalize().
Definition at line 397 of file bsf.c.
Referenced by av_bsf_list_parse_str().
Free list of bitstream filters.
lst | Pointer to pointer returned by av_bsf_list_alloc() |
Definition at line 402 of file bsf.c.
Referenced by av_bsf_list_parse_str().
int av_bsf_list_append | ( | AVBSFList * | lst, |
AVBSFContext * | bsf | ||
) |
Append bitstream filter to the list of bitstream filters.
lst | List to append to |
bsf | Filter context to be appended |
Definition at line 415 of file bsf.c.
Referenced by av_bsf_list_append2().
int av_bsf_list_append2 | ( | AVBSFList * | lst, |
const char * | bsf_name, | ||
AVDictionary ** | options | ||
) |
Construct new bitstream filter context given it's name and options and append it to the list of bitstream filters.
lst | List to append to |
bsf_name | Name of the bitstream filter |
options | Options for the bitstream filter, can be set to NULL |
Definition at line 420 of file bsf.c.
Referenced by bsf_parse_single().
int av_bsf_list_finalize | ( | AVBSFList ** | lst, |
AVBSFContext ** | bsf | ||
) |
Finalize list of bitstream filters.
This function will transform AVBSFList to single AVBSFContext, so the whole chain of bitstream filters can be treated as single filter freshly allocated by av_bsf_alloc(). If the call is successful, AVBSFList structure is freed and lst will be set to NULL. In case of failure, caller is responsible for freeing the structure by av_bsf_list_free()
lst | Filter list structure to be transformed | |
[out] | bsf | Pointer to be set to newly created AVBSFContext structure representing the chain of bitstream filters |
Definition at line 449 of file bsf.c.
Referenced by av_bsf_list_parse_str().
int av_bsf_list_parse_str | ( | const char * | str, |
AVBSFContext ** | bsf | ||
) |
Parse string describing list of bitstream filters and create single AVBSFContext describing the whole chain of bitstream filters.
Resulting AVBSFContext can be treated as any other AVBSFContext freshly allocated by av_bsf_alloc().
str | String describing chain of bitstream filters in format bsf1[=opt1=val1:opt2=val2][,bsf2] | |
[out] | bsf | Pointer to be set to newly created AVBSFContext structure representing the chain of bitstream filters |
Definition at line 504 of file bsf.c.
Referenced by open_slave().
int av_bsf_get_null_filter | ( | AVBSFContext ** | bsf | ) |
Get null/pass-through bitstream filter.
[out] | bsf | Pointer to be set to new instance of pass-through bitstream filter |
Definition at line 540 of file bsf.c.
Referenced by av_bsf_list_parse_str(), and open_slave().
Same behaviour av_fast_malloc but the buffer has additional AV_INPUT_BUFFER_PADDING_SIZE at the end which will always be 0.
In addition the whole buffer will initially and after resizes be 0-initialized so that no uninitialized data will ever appear.
Definition at line 120 of file utils.c.
Referenced by allocate_buffers(), allocate_buffers2(), ape_decode_frame(), cdxl_decode_frame(), cllc_decode_frame(), dcadec_decode_frame(), decode(), decode_block(), decode_frame(), decode_i_frame(), decode_idat_chunk(), decode_p_frame(), deinvert_buffer(), ebml_read_binary(), encode_frame(), ff_alloc_packet2(), ff_h2645_extract_rbsp(), ff_mjpeg_find_marker(), ff_mpeg4_frame_end(), ff_mpv_reallocate_putbitbuffer(), init_buffers(), mimic_decode_frame(), mp_decode_frame(), mpc7_decode_frame(), parse_object_segment(), raw_decode(), svq1_decode_frame(), svq3_decode_frame(), tiff_unpack_strip(), tqi_decode_frame(), utvideo_encode_frame(), wavpack_encode_block(), wavpack_encode_frame(), and wv_stereo().
Same behaviour av_fast_padded_malloc except that buffer will always be 0-initialized after call.
Definition at line 132 of file utils.c.
Referenced by decode_idat_chunk(), and encode_frame().
unsigned int av_xiphlacing | ( | unsigned char * | s, |
unsigned int | v | ||
) |
Encode extradata length to a buffer.
Used by xiph codecs.
s | buffer to write to; must be at least (v/255+1) bytes long |
v | size of extradata in bytes |
Definition at line 3763 of file utils.c.
Referenced by fixup_vorbis_headers(), libvorbis_encode_init(), parse_packed_headers(), and put_main_header().
attribute_deprecated void av_log_missing_feature | ( | void * | avc, |
const char * | feature, | ||
int | want_sample | ||
) |
Log a generic warning message about a missing feature.
This function is intended to be used internally by FFmpeg (libavcodec, libavformat, etc.) only, and would normally not be used by applications.
[in] | avc | a pointer to an arbitrary struct of which the first field is a pointer to an AVClass struct |
[in] | feature | string containing the name of the missing feature |
[in] | want_sample | indicates if samples are wanted which exhibit this feature. If want_sample is non-zero, additional verbiage will be added to the log message which tells the user how to report samples to the development mailing list. |
attribute_deprecated void av_log_ask_for_sample | ( | void * | avc, |
const char * | msg, | ||
... | |||
) |
Log a generic warning message asking for a sample.
This function is intended to be used internally by FFmpeg (libavcodec, libavformat, etc.) only, and would normally not be used by applications.
[in] | avc | a pointer to an arbitrary struct of which the first field is a pointer to an AVClass struct |
[in] | msg | string containing an optional message, or NULL if no message |
attribute_deprecated void void av_register_hwaccel | ( | AVHWAccel * | hwaccel | ) |
If hwaccel is NULL, returns the first registered hardware accelerator, if hwaccel is non-NULL, returns the next registered hardware accelerator after hwaccel, or NULL if hwaccel is the last one.
Definition at line 3825 of file utils.c.
Referenced by find_hwaccel().
Register a user provided lock manager supporting the operations specified by AVLockOp.
The "mutex" argument to the function points to a (void *) where the lockmgr should store/get a pointer to a user allocated mutex. It is NULL upon AV_LOCK_CREATE and equal to the value left by the last call for all other ops. If the lock manager is unable to perform the op then it should leave the mutex in the same state as when it was called and return a non-zero value. However, when called with AV_LOCK_DESTROY the mutex will always be assumed to have been successfully destroyed. If av_lockmgr_register succeeds it will return a non-negative value, if it fails it will return a negative value and destroy all mutex and unregister all callbacks. av_lockmgr_register is not thread-safe, it must be called from a single thread before any calls which make use of locking are used.
cb | User defined callback. av_lockmgr_register invokes calls to this callback and the previously registered callback. The callback will be used to create more than one mutex each of which must be backed by its own underlying locking mechanism (i.e. do not use a single static object to implement your lock manager). If cb is set to NULL the lockmgr will be unregistered. |
enum AVMediaType avcodec_get_type | ( | enum AVCodecID | codec_id | ) |
Get the type of the given codec.
Definition at line 3006 of file codec_desc.c.
Referenced by m4sl_cb(), and mkv_query_codec().
const char* avcodec_get_name | ( | enum AVCodecID | id | ) |
Get the name of a codec.
Definition at line 3146 of file utils.c.
Referenced by add_stream(), avcodec_string(), avformat_find_stream_info(), choose_encoder(), configure_filtergraph(), device_try_init(), ff_framehash_write_header(), ffserver_save_avoption(), ffserver_set_codec(), flv_write_header(), get_audio_flags(), init_input_stream(), log_slave(), lrc_write_header(), mkv_write_codecprivate(), mkv_write_header(), mov_init(), mpeg_mux_init(), mxf_parse_structural_metadata(), read_frame_internal(), rtp_write_header(), and srt_write_header().
int avcodec_is_open | ( | AVCodecContext * | s | ) |
Definition at line 4006 of file utils.c.
Referenced by avcodec_close(), avcodec_copy_context(), avcodec_open2(), avcodec_receive_frame(), avcodec_receive_packet(), avcodec_send_frame(), avcodec_send_packet(), mpegts_set_stream_info(), read_frame_internal(), try_decode_frame(), and try_decode_video_frame().
int av_codec_is_encoder | ( | const AVCodec * | codec | ) |
Definition at line 168 of file utils.c.
Referenced by alloc_frame_buffer(), avcodec_close(), avcodec_find_encoder_by_name(), avcodec_open2(), avcodec_receive_packet(), avcodec_send_frame(), ff_slice_thread_init(), ff_snow_get_buffer(), find_encdec(), init_band_stepsize(), main(), next_codec_for_id(), and print_codec().
int av_codec_is_decoder | ( | const AVCodec * | codec | ) |
Definition at line 173 of file utils.c.
Referenced by avcodec_find_decoder_by_name(), avcodec_open2(), avcodec_receive_frame(), avcodec_send_packet(), find_encdec(), find_probe_decoder(), and next_codec_for_id().
const AVCodecDescriptor* avcodec_descriptor_get | ( | enum AVCodecID | id | ) |
Definition at line 2977 of file codec_desc.c.
Referenced by asf_write_header1(), av_bsf_init(), avcodec_get_name(), avcodec_get_type(), avcodec_open2(), avcodec_profile_name(), ffm2_read_header(), ffm_read_header(), ico_check_attributes(), init_muxer(), is_intra_only(), list_formats(), open_output_file(), show_help_muxer(), show_stream(), unsupported_codec(), and vaapi_build_decoder_config().
const AVCodecDescriptor* avcodec_descriptor_next | ( | const AVCodecDescriptor * | prev | ) |
Iterate over all codec descriptors known to libavcodec.
prev | previous descriptor. NULL to get the first descriptor. |
Definition at line 2987 of file codec_desc.c.
Referenced by avcodec_descriptor_get_by_name(), and get_codecs_sorted().
const AVCodecDescriptor* avcodec_descriptor_get_by_name | ( | const char * | name | ) |
Definition at line 2996 of file codec_desc.c.
Referenced by find_codec_or_die(), and show_help_codec().
AVCPBProperties* av_cpb_properties_alloc | ( | size_t * | size | ) |
Allocate a CPB properties structure and initialize its fields to default values.
size | if non-NULL, the size of the allocated struct will be written here. This is useful for embedding it in side data. |
Definition at line 4067 of file utils.c.
Referenced by ff_add_cpb_side_data(), and ff_mpv_encode_picture().