FFmpeg
|
Types and functions for working with AVPacket. More...
Data Structures | |
struct | AVPacketSideData |
struct | AVPacket |
This structure stores compressed data. More... | |
Macros | |
#define | AV_PKT_DATA_QUALITY_FACTOR AV_PKT_DATA_QUALITY_STATS |
#define | AV_PKT_FLAG_KEY 0x0001 |
The packet contains a keyframe. More... | |
#define | AV_PKT_FLAG_CORRUPT 0x0002 |
The packet content is corrupted. More... | |
#define | AV_PKT_FLAG_DISCARD 0x0004 |
Flag is used to discard packets which are required to maintain valid decoder state but are not required for output and should be dropped after decoding. More... | |
#define | AV_PKT_FLAG_TRUSTED 0x0008 |
The packet comes from a trusted source. More... | |
#define | AV_PKT_FLAG_DISPOSABLE 0x0010 |
Flag is used to indicate packets that contain frames that can be discarded by the decoder. More... | |
Functions | |
AVPacket * | av_packet_alloc (void) |
Allocate an AVPacket and set its fields to default values. More... | |
AVPacket * | av_packet_clone (const AVPacket *src) |
Create a new packet that references the same data as src. More... | |
void | av_packet_free (AVPacket **pkt) |
Free the packet, if the packet is reference counted, it will be unreferenced first. More... | |
int | av_new_packet (AVPacket *pkt, int size) |
Allocate the payload of a packet and initialize its fields with default values. More... | |
void | av_shrink_packet (AVPacket *pkt, int size) |
Reduce packet size, correctly zeroing padding. More... | |
int | av_grow_packet (AVPacket *pkt, int grow_by) |
Increase packet size, correctly zeroing padding. More... | |
int | av_packet_from_data (AVPacket *pkt, uint8_t *data, int size) |
Initialize a reference-counted packet from av_malloc()ed data. More... | |
uint8_t * | av_packet_new_side_data (AVPacket *pkt, enum AVPacketSideDataType type, size_t size) |
Allocate new information of a packet. More... | |
int | av_packet_add_side_data (AVPacket *pkt, enum AVPacketSideDataType type, uint8_t *data, size_t size) |
Wrap an existing array as a packet side data. More... | |
int | av_packet_shrink_side_data (AVPacket *pkt, enum AVPacketSideDataType type, size_t size) |
Shrink the already allocated side data buffer. More... | |
uint8_t * | av_packet_get_side_data (const AVPacket *pkt, enum AVPacketSideDataType type, size_t *size) |
Get side information from packet. More... | |
const char * | av_packet_side_data_name (enum AVPacketSideDataType type) |
uint8_t * | av_packet_pack_dictionary (AVDictionary *dict, size_t *size) |
Pack a dictionary for use in side_data. More... | |
int | av_packet_unpack_dictionary (const uint8_t *data, size_t size, AVDictionary **dict) |
Unpack a dictionary from side_data. More... | |
void | av_packet_free_side_data (AVPacket *pkt) |
Convenience function to free all the side data stored. More... | |
int | av_packet_ref (AVPacket *dst, const AVPacket *src) |
Setup a new reference to the data described by a given packet. More... | |
void | av_packet_unref (AVPacket *pkt) |
Wipe the packet. More... | |
void | av_packet_move_ref (AVPacket *dst, AVPacket *src) |
Move every field in src to dst and reset src. More... | |
int | av_packet_copy_props (AVPacket *dst, const AVPacket *src) |
Copy only "properties" fields from src to dst. More... | |
int | av_packet_make_refcounted (AVPacket *pkt) |
Ensure the data described by a given packet is reference counted. More... | |
int | av_packet_make_writable (AVPacket *pkt) |
Create a writable reference for the data described by a given packet, avoiding data copy if possible. More... | |
void | av_packet_rescale_ts (AVPacket *pkt, AVRational tb_src, AVRational tb_dst) |
Convert valid timing fields (timestamps / durations) in a packet from one timebase to another. More... | |
Types and functions for working with AVPacket.
#define AV_PKT_DATA_QUALITY_FACTOR AV_PKT_DATA_QUALITY_STATS |
#define AV_PKT_FLAG_KEY 0x0001 |
#define AV_PKT_FLAG_CORRUPT 0x0002 |
#define AV_PKT_FLAG_DISCARD 0x0004 |
#define AV_PKT_FLAG_TRUSTED 0x0008 |
#define AV_PKT_FLAG_DISPOSABLE 0x0010 |
enum AVPacketSideDataType |
Enumerator | |
---|---|
AV_PKT_DATA_PALETTE | An AV_PKT_DATA_PALETTE side data packet contains exactly AVPALETTE_SIZE bytes worth of palette. This side data signals that a new palette is present. |
AV_PKT_DATA_NEW_EXTRADATA | The AV_PKT_DATA_NEW_EXTRADATA is used to notify the codec or the format that the extradata buffer was changed and the receiving side should act upon it appropriately. The new extradata is embedded in the side data buffer and should be immediately used for processing the current frame or packet. |
AV_PKT_DATA_PARAM_CHANGE | An AV_PKT_DATA_PARAM_CHANGE side data packet is laid out as follows: u32le param_flags
if (param_flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT)
s32le channel_count
if (param_flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT)
u64le channel_layout
if (param_flags & AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE)
s32le sample_rate
if (param_flags & AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS)
s32le width
s32le height
|
AV_PKT_DATA_H263_MB_INFO | An AV_PKT_DATA_H263_MB_INFO side data packet contains a number of structures with info about macroblocks relevant to splitting the packet into smaller packets on macroblock edges (e.g. as for RFC 2190). That is, it does not necessarily contain info about all macroblocks, as long as the distance between macroblocks in the info is smaller than the target payload size. Each MB info structure is 12 bytes, and is laid out as follows: u32le bit offset from the start of the packet
u8 current quantizer at the start of the macroblock
u8 GOB number
u16le macroblock address within the GOB
u8 horizontal MV predictor
u8 vertical MV predictor
u8 horizontal MV predictor for block number 3
u8 vertical MV predictor for block number 3
|
AV_PKT_DATA_REPLAYGAIN | This side data should be associated with an audio stream and contains ReplayGain information in form of the AVReplayGain struct. |
AV_PKT_DATA_DISPLAYMATRIX | This side data contains a 3x3 transformation matrix describing an affine transformation that needs to be applied to the decoded video frames for correct presentation. See libavutil/display.h for a detailed description of the data. |
AV_PKT_DATA_STEREO3D | This side data should be associated with a video stream and contains Stereoscopic 3D information in form of the AVStereo3D struct. |
AV_PKT_DATA_AUDIO_SERVICE_TYPE | This side data should be associated with an audio stream and corresponds to enum AVAudioServiceType. |
AV_PKT_DATA_QUALITY_STATS | This side data contains quality related information from the encoder. u32le quality factor of the compressed frame. Allowed range is between 1 (good) and FF_LAMBDA_MAX (bad).
u8 picture type
u8 error count
u16 reserved
u64le[error count] sum of squared differences between encoder in and output
|
AV_PKT_DATA_FALLBACK_TRACK | This side data contains an integer value representing the stream index of a "fallback" track. A fallback track indicates an alternate track to use when the current track can not be decoded for some reason. e.g. no decoder available for codec. |
AV_PKT_DATA_CPB_PROPERTIES | This side data corresponds to the AVCPBProperties struct. |
AV_PKT_DATA_SKIP_SAMPLES | Recommmends skipping the specified number of samples. u32le number of samples to skip from start of this packet
u32le number of samples to skip from end of this packet
u8 reason for start skip
u8 reason for end skip (0=padding silence, 1=convergence)
|
AV_PKT_DATA_JP_DUALMONO | An AV_PKT_DATA_JP_DUALMONO side data packet indicates that the packet may contain "dual mono" audio specific to Japanese DTV and if it is true, recommends only the selected channel to be used. u8 selected channels (0=main/left, 1=sub/right, 2=both)
|
AV_PKT_DATA_STRINGS_METADATA | A list of zero terminated key/value strings. There is no end marker for the list, so it is required to rely on the side data size to stop. |
AV_PKT_DATA_SUBTITLE_POSITION | Subtitle event position. u32le x1
u32le y1
u32le x2
u32le y2
|
AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL | Data found in BlockAdditional element of matroska container. There is no end marker for the data, so it is required to rely on the side data size to recognize the end. 8 byte id (as found in BlockAddId) followed by data. |
AV_PKT_DATA_WEBVTT_IDENTIFIER | The optional first identifier line of a WebVTT cue. |
AV_PKT_DATA_WEBVTT_SETTINGS | The optional settings (rendering instructions) that immediately follow the timestamp specifier of a WebVTT cue. |
AV_PKT_DATA_METADATA_UPDATE | A list of zero terminated key/value strings. There is no end marker for the list, so it is required to rely on the side data size to stop. This side data includes updated metadata which appeared in the stream. |
AV_PKT_DATA_MPEGTS_STREAM_ID | MPEGTS stream ID as uint8_t, this is required to pass the stream ID information from the demuxer to the corresponding muxer. |
AV_PKT_DATA_MASTERING_DISPLAY_METADATA | Mastering display metadata (based on SMPTE-2086:2014). This metadata should be associated with a video stream and contains data in the form of the AVMasteringDisplayMetadata struct. |
AV_PKT_DATA_SPHERICAL | This side data should be associated with a video stream and corresponds to the AVSphericalMapping structure. |
AV_PKT_DATA_CONTENT_LIGHT_LEVEL | Content light level (based on CTA-861.3). This metadata should be associated with a video stream and contains data in the form of the AVContentLightMetadata struct. |
AV_PKT_DATA_A53_CC | ATSC A53 Part 4 Closed Captions. This metadata should be associated with a video stream. A53 CC bitstream is stored as uint8_t in AVPacketSideData.data. The number of bytes of CC data is AVPacketSideData.size. |
AV_PKT_DATA_ENCRYPTION_INIT_INFO | This side data is encryption initialization data. The format is not part of ABI, use av_encryption_init_info_* methods to access. |
AV_PKT_DATA_ENCRYPTION_INFO | This side data contains encryption info for how to decrypt the packet. The format is not part of ABI, use av_encryption_info_* methods to access. |
AV_PKT_DATA_AFD | Active Format Description data consisting of a single byte as specified in ETSI TS 101 154 using AVActiveFormatDescription enum. |
AV_PKT_DATA_PRFT | Producer Reference Time data corresponding to the AVProducerReferenceTime struct, usually exported by some encoders (on demand through the prft flag set in the AVCodecContext export_side_data field). |
AV_PKT_DATA_ICC_PROFILE | ICC profile data consisting of an opaque octet buffer following the format described by ISO 15076-1. |
AV_PKT_DATA_DOVI_CONF | DOVI configuration ref: dolby-vision-bitstreams-within-the-iso-base-media-file-format-v2.1.2, section 2.2 dolby-vision-bitstreams-in-mpeg-2-transport-stream-multiplex-v1.2, section 3.3 Tags are stored in struct AVDOVIDecoderConfigurationRecord. |
AV_PKT_DATA_S12M_TIMECODE | Timecode which conforms to SMPTE ST 12-1:2014. The data is an array of 4 uint32_t where the first uint32_t describes how many (1-3) of the other timecodes are used. The timecode format is described in the documentation of av_timecode_get_smpte_from_framenum() function in libavutil/timecode.h. |
AV_PKT_DATA_DYNAMIC_HDR10_PLUS | HDR10+ dynamic metadata associated with a video frame. The metadata is in the form of the AVDynamicHDRPlus struct and contains information for color volume transform - application 4 of SMPTE 2094-40:2016 standard. |
AV_PKT_DATA_NB | The number of side data types. This is not part of the public API/ABI in the sense that it may change when new side data types are added. This must stay the last enum value. If its value becomes huge, some code using it needs to be updated as it assumes it to be smaller than other limits. |
AVPacket* av_packet_alloc | ( | void | ) |
Allocate an AVPacket and set its fields to default values.
The resulting struct must be freed using av_packet_free().
Definition at line 62 of file avpacket.c.
Referenced by add_input_streams(), add_stream(), alloc_packet(), amv_init(), apng_write_packet(), asf_read_stream_properties(), asf_read_timestamp(), av1_frame_merge_init(), av1_frame_split_init(), av_bsf_alloc(), av_packet_clone(), avcodec_open2(), avformat_alloc_context(), config_input(), config_props(), cri_decode_init(), decoder_init(), ds_open(), encode_write(), estimate_best_b_count(), ff_alsa_open(), ff_bsf_get_packet(), ff_decode_preinit(), ff_frame_thread_encoder_init(), ff_reshuffle_raw_rgb(), ff_subtitles_queue_insert(), frame_merge_init(), ftr_init(), gif_write_packet(), handle_eac3(), init(), init_filters(), init_packet(), init_thread(), initialize_fifo_tst_muxer_chain(), input_thread(), libdav1d_receive_frame(), LLVMFuzzerTestOneInput(), main(), moflex_read_sync(), mov_init(), mpegts_get_dts(), muxer_thread(), new_output_stream(), new_playlist(), packet_queue_put(), qt_rtp_init(), queue_packet(), read_gab2_sub(), read_interval_packets(), read_thread(), rtp_mpegts_write_header(), run_test(), seek_test(), setts_init(), setup_sync_queues(), tdsc_init(), tiff_init(), video_decode(), video_decode_example(), vp9_superframe_init(), vp9_superframe_split_init(), wc3_read_header(), webp_decode_init(), and xvid_encode_init().
Create a new packet that references the same data as src.
This is a shortcut for av_packet_alloc()+av_packet_ref().
Definition at line 466 of file avpacket.c.
Referenced by decklink_write_video_packet(), flac_write_packet(), and main().
void av_packet_free | ( | AVPacket ** | pkt | ) |
Free the packet, if the packet is reference counted, it will be unreferenced first.
pkt | packet to be freed. The pointer will be set to NULL. |
Definition at line 73 of file avpacket.c.
Referenced by amv_deinit(), apng_deinit(), asf_read_close(), asf_read_timestamp(), av1_frame_merge_close(), av1_frame_split_close(), av_bsf_free(), av_packet_clone(), avcodec_close(), avformat_free_context(), avi_read_close(), avi_write_packet(), close_stream(), cri_decode_close(), decklink_write_video_packet(), decode_audio_frame(), decoder_destroy(), drop_dups(), ds_free(), dts2pts_filter(), dts2pts_flush(), encode_audio_frame(), encode_write(), estimate_best_b_count(), ff_alsa_close(), ff_frame_thread_encoder_free(), ff_frame_thread_free(), ff_reshuffle_raw_rgb(), ff_subtitles_queue_clean(), ff_subtitles_queue_insert(), filter(), flac_deinit(), frame_merge_close(), free_packet(), free_playlist_list(), ftr_close(), gif_write_trailer(), h264_filter(), h264_mp4toannexb_filter(), hevc_mp4toannexb_filter(), imx_dump_header(), input_thread(), ist_free(), libdav1d_receive_frame(), libdav1d_user_data_free(), LLVMFuzzerTestOneInput(), main(), mjpeg2jpeg_filter(), mjpega_dump_header(), moflex_read_close(), mov_free(), mov_write_packet(), mp3_header_decompress(), mpegts_get_dts(), muxer_thread(), new_playlist(), of_close(), ost_free(), packet_queue_flush(), packet_queue_get(), packet_queue_put(), process_input(), qt_rtp_close(), read_gab2_sub(), read_interval_packets(), read_thread(), decklink_frame::Release(), rtp_mpegts_write_close(), run_test(), seek_test(), setts_close(), tdsc_close(), text2movsub(), thread_start(), thread_stop(), tiff_end(), uninit(), video_decode(), video_decode_example(), vp9_raw_reorder_filter(), vp9_raw_reorder_frame_free(), vp9_superframe_close(), vp9_superframe_split_uninit(), wc3_read_close(), webp_decode_close(), and xvid_encode_init().
Allocate the payload of a packet and initialize its fields with default values.
pkt | packet |
size | wanted payload size |
Definition at line 97 of file avpacket.c.
Referenced by aac_parse_packet(), ac3_handle_packet(), amr_handle_packet(), amv_init(), ape_read_packet(), asf_parse_packet(), asf_read_replicated_data(), asf_read_single_payload(), audio_read_packet(), avf_read_packet(), avisynth_read_packet_audio(), avisynth_read_packet_video(), avs_read_video_packet(), binka_read_packet(), bmv_read_packet(), callback(), cdxl_read_packet(), cin_read_packet(), create_subcc_packet(), decode_frame(), demux_audio(), demux_video(), do_subtitle_out(), dsf_read_packet(), dss_723_1_read_packet(), dss_sp_read_packet(), dump_extradata(), dxa_read_packet(), encode_frame(), fbdev_read_packet(), ff_h263_handle_packet(), ff_h264_handle_aggregated_packet(), ff_h264_handle_frag_packet(), ff_img_read_packet(), ff_raw_read_partial_packet(), ff_reshuffle_raw_rgb(), ff_rm_retrieve_cache(), ff_spdif_read_packet(), ff_subtitles_queue_insert(), filter(), fits_read_packet(), fourxm_read_packet(), fsb_read_packet(), g723_1_read_packet(), gdigrab_read_packet(), genh_read_packet(), get_eia608_packet(), grab_read_packet(), h264_handle_packet(), h264_mp4toannexb_filter(), hevc_handle_packet(), image_available(), imx_dump_header(), laf_read_packet(), latm_parse_packet(), lavfi_read_packet(), LLVMFuzzerTestOneInput(), load_ipmovie_packet(), lxf_read_packet(), main(), merge_superframe(), mjpeg2jpeg_filter(), mjpega_dump_header(), mmap_read_frame(), modplug_read_packet(), mp3_header_decompress(), mpa_robust_parse_packet(), mpc_read_packet(), mpeg_parse_packet(), mpegts_raw_read_packet(), mxg_read_packet(), nuv_packet(), ogg_read_packet(), pp_bnk_read_packet(), prepare_packet(), pulse_read_packet(), qdm2_restore_block(), qt_rtp_parse_packet(), read_frame(), read_packet(), read_packet_gme(), read_packet_openmpt(), rechunk_filter(), recode_subtitle(), return_stored_frame(), rm_assemble_video_frame(), rm_read_audio_stream_info(), roq_read_packet(), rsd_read_packet(), rtp_parse_packet_internal(), sbg_read_packet(), sdr2_read_packet(), sds_read_packet(), seq_read_packet(), sga_audio_packet(), sga_video_packet(), siff_read_packet(), smacker_read_packet(), store_packet(), str_read_packet(), supply_new_packets(), swf_read_packet(), text2movsub(), vc2hq_handle_sequence_header(), vc2hq_mark_end_of_sequence(), videostream_cb(), vmd_read_packet(), vp9_raw_reorder_make_output(), vpk_read_packet(), vqf_read_packet(), wsaud_read_packet(), wv_read_packet(), xiph_handle_packet(), and yop_read_packet().
Reduce packet size, correctly zeroing padding.
pkt | packet |
size | new size |
Definition at line 112 of file avpacket.c.
Referenced by adx_read_packet(), append_packet_chunked(), asf_parse_packet(), cdxl_read_packet(), cfhd_encode_frame(), cin_read_packet(), decode_frame(), decrypt_video_frame(), do_subtitle_out(), encode_frame(), encode_picture_ls(), ff_raw_read_partial_packet(), flac_encode_frame(), fourxm_read_packet(), hap_encode(), hdr_encode_frame(), imf_read_packet(), libopenjpeg_encode_frame(), libopus_encode(), mlp_encode_frame(), mxf_decrypt_triplet(), mxf_get_d10_aes3_packet(), nuv_packet(), pnm_encode_frame(), pulse_read_packet(), rm_assemble_video_frame(), rpza_encode_frame(), sdr2_read_packet(), smc_encode_frame(), swf_read_packet(), twolame_encode_frame(), vc2_encode_frame(), wbmp_encode_frame(), and yop_read_packet().
Increase packet size, correctly zeroing padding.
pkt | packet |
grow_by | number of bytes by which to increase the size of the packet |
Definition at line 120 of file avpacket.c.
Referenced by append_packet_chunked(), encode_frame(), ff_subtitles_queue_insert(), frame_merge_filter(), ftr_decode_frame(), handle_eac3(), hevc_mp4toannexb_filter(), main(), stream_seek(), stream_skip(), stream_write(), and wv_read_packet().
Initialize a reference-counted packet from av_malloc()ed data.
pkt | packet to be initialized. This function will set the data, size, and buf fields, all others are left untouched. |
data | Data allocated by av_malloc() to be used as packet data. If this function returns successfully, the data is owned by the underlying AVBuffer. The caller may not access the data through other means. |
size | size of data in bytes, without the padding. I.e. the full buffer size is assumed to be size + AV_INPUT_BUFFER_PADDING_SIZE. |
Definition at line 171 of file avpacket.c.
Referenced by asf_deinterleave(), ff_mov_generate_squashed_ttml_packet(), ff_rtp_finalize_packet(), iec61883_parse_queue_dv(), main(), omx_encode_frame(), qt_rtp_parse_packet(), and rfc4175_finalize_packet().
uint8_t* av_packet_new_side_data | ( | AVPacket * | pkt, |
enum AVPacketSideDataType | type, | ||
size_t | size | ||
) |
Allocate new information of a packet.
pkt | packet |
type | side information type |
size | side information size |
Definition at line 230 of file avpacket.c.
Referenced by aac_adtstoasc_filter(), add_event(), asf_parse_packet(), av_packet_copy_props(), avi_read_packet(), cbs_bsf_update_side_data(), copy_hdr10_plus_to_pkt(), dash_parse_prft(), encode_apng(), encode_frame(), ff_add_param_change(), ff_mpv_encode_picture(), ff_side_data_set_encoder_stats(), ff_side_data_set_prft(), flac_encode_frame(), gdv_read_packet(), idcin_read_packet(), imf_read_packet(), libopus_encode(), load_ipmovie_packet(), mov_change_extradata(), mov_read_packet(), mp3lame_encode_frame(), new_pes_packet(), ogg_read_packet(), opus_encode_frame(), process_input(), read_frame(), read_frame_internal(), read_sm_data(), rtp_set_prft(), simbiosis_imx_read_packet(), smc_encode_frame(), storeframe(), swf_read_packet(), decklink_input_callback::VideoInputFrameArrived(), and vorbis_encode_frame().
int av_packet_add_side_data | ( | AVPacket * | pkt, |
enum AVPacketSideDataType | type, | ||
uint8_t * | data, | ||
size_t | size | ||
) |
Wrap an existing array as a packet side data.
pkt | packet |
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 pkt. |
size | side information size |
Definition at line 196 of file avpacket.c.
Referenced by aax_read_packet(), add_filename_as_pkt_side_data(), av_packet_new_side_data(), cenc_filter(), concat_read_packet(), extract_extradata_filter(), ff_mpv_encode_picture(), flv_read_packet(), get_metadata(), h264_metadata_handle_display_orientation(), lavfi_read_packet(), ogg_read_packet(), setup_side_data_entry(), and decklink_input_callback::VideoInputFrameArrived().
int av_packet_shrink_side_data | ( | AVPacket * | pkt, |
enum AVPacketSideDataType | type, | ||
size_t | size | ||
) |
Shrink the already allocated side data buffer.
pkt | packet |
type | side information type |
size | new side information size |
Definition at line 369 of file avpacket.c.
Referenced by ff_mpv_encode_picture().
uint8_t* av_packet_get_side_data | ( | const AVPacket * | pkt, |
enum AVPacketSideDataType | type, | ||
size_t * | size | ||
) |
Get side information from packet.
pkt | packet |
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. |
Definition at line 251 of file avpacket.c.
Referenced by aac_decode_frame(), add_metadata_from_side_data(), adts_write_packet(), adx_decode_frame(), apply_param_change(), cbs_bsf_update_side_data(), cinepak_decode_frame(), dash_parse_prft(), decode_frame(), decode_simple_internal(), ff_cbs_read_packet_side_data(), ff_copy_palette(), ff_decklink_read_packet(), ff_decode_frame_props_from_pkt(), ff_get_packet_palette(), ff_mov_write_packet(), ff_side_data_set_encoder_stats(), ff_side_data_set_prft(), ffat_decode(), flac_write_audio_packet(), flush_packet(), flv_write_packet(), h264_decode_frame(), h264_metadata_handle_display_orientation(), hevc_decode_frame(), ipvideo_decode_frame(), latm_write_packet(), mkv_check_new_extra_data(), mkv_write_block(), mov_write_single_packet(), mp3_write_audio_packet(), mpegts_write_packet_internal(), process_input(), read_frame_internal(), rtp_write_packet(), seg_write_packet(), show_packet(), srt_decode_frame(), srt_write_packet(), trace_headers(), update_stream_extradata(), update_video_stats(), vpx_decode(), webm_reformat_vtt(), and webvtt_write_packet().
const char* av_packet_side_data_name | ( | enum AVPacketSideDataType | type | ) |
Definition at line 268 of file avpacket.c.
Referenced by print_pkt_side_data(), and setup_side_data_entry().
uint8_t* av_packet_pack_dictionary | ( | AVDictionary * | dict, |
size_t * | size | ||
) |
Pack a dictionary for use in side_data.
dict | The dictionary to pack. |
size | pointer to store the size of the returned data |
Definition at line 307 of file avpacket.c.
Referenced by add_filename_as_pkt_side_data(), concat_read_packet(), lavfi_read_packet(), decklink_input_callback::VideoInputFrameArrived(), and vorbis_update_metadata().
int av_packet_unpack_dictionary | ( | const uint8_t * | data, |
size_t | size, | ||
AVDictionary ** | dict | ||
) |
Unpack a dictionary from side_data.
data | data from side_data |
size | size of the data |
dict | the metadata storage dictionary |
Definition at line 342 of file avpacket.c.
Referenced by add_metadata_from_side_data(), ff_decklink_read_packet(), and show_packet().
void av_packet_free_side_data | ( | AVPacket * | pkt | ) |
Convenience function to free all the side data stored.
All the other fields stay untouched.
pkt | packet |
Definition at line 187 of file avpacket.c.
Referenced by av_packet_copy_props(), and av_packet_unref().
Setup a new reference to the data described by a given packet.
If src is reference-counted, setup dst as a new reference to the buffer in src. Otherwise allocate a new buffer in dst and copy the data from src into it.
All the other fields are copied from src.
dst | Destination packet. Will be completely overwritten. |
src | Source packet |
Definition at line 430 of file avpacket.c.
Referenced by amv_write_packet(), apng_write_packet(), av1_frame_split_filter(), av_packet_clone(), avcodec_send_packet(), avformat_queue_attached_pictures(), do_streamcopy(), extract_extradata(), ff_subtitles_queue_read_packet(), ffat_decode(), fifo_write_packet(), flush_packet(), gif_write_packet(), handle_eac3(), mkv_write_packet(), mov_write_packet(), process_input_packet(), qsv_decode_frame(), read_thread(), rechunk_filter(), setts_filter(), stream_params_copy(), submit_packet(), tee_write_packet(), vp9_superframe_split_filter(), webp_write_packet(), write_muxed_file(), and write_packet().
void av_packet_unref | ( | AVPacket * | pkt | ) |
Wipe the packet.
Unreference the buffer referenced by the packet and reset the remaining packet fields to their default values.
pkt | The packet to be unreferenced. |
Definition at line 422 of file avpacket.c.
Referenced by aac_adtstoasc_filter(), adts_aac_read_packet(), amv_write_packet(), android_camera_read_close(), append_packet_chunked(), asf_deinterleave(), asf_parse_packet(), asf_read_header(), asf_read_pts(), asf_read_timestamp(), asf_reset_header(), asfrtp_parse_packet(), audio_read_packet(), av1_frame_merge_filter(), av1_frame_merge_flush(), av1_frame_split_filter(), av1_frame_split_flush(), av_bsf_flush(), av_bsf_send_packet(), av_get_packet(), av_interleaved_write_frame(), av_packet_free(), av_packet_ref(), av_read_frame(), av_write_frame(), av_write_trailer(), avcodec_decode_subtitle2(), avcodec_flush_buffers(), avcodec_receive_packet(), avcodec_send_packet(), avformat_find_stream_info(), avi_read_packet(), avisynth_read_packet_audio(), avisynth_read_packet_video(), avpacket_queue_flush(), avpacket_queue_put(), avpriv_packet_list_free(), binkaudio_receive_frame(), bsf_list_filter(), compute_crc_of_packets(), concat_read_packet(), cri_decode_frame(), crystalhd_receive_frame(), cuvid_output_frame(), decode_frame(), decode_simple_internal(), decoder_decode_frame(), demux_audio(), dng_decode_jpeg(), do_streamcopy(), ds_run(), dshow_read_close(), dts2pts_filter(), dump_extradata(), dv_error_marker_filter(), ea_read_packet(), eac3_core_filter(), encode(), encode_frame(), encode_receive_packet_internal(), encode_write(), encode_write_frame(), estimate_best_b_count(), estimate_timings_from_pts(), extract_extradata(), extract_extradata_filter(), extract_packet_props(), failing_write_packet(), ff_add_attached_pic(), ff_cbs_bsf_generic_filter(), ff_decode_get_packet(), ff_encode_encode_cb(), ff_free_stream(), ff_get_encode_buffer(), ff_interleave_add_packet(), ff_interleave_packet_per_dts(), ff_load_image(), ff_mov_add_hinted_packet(), ff_qsv_enc_close(), ff_raw_read_partial_packet(), ff_read_packet(), ff_rm_free_rmstream(), ff_rtp_finalize_packet(), ff_v4l2_buffer_buf_to_avpkt(), ffat_close_decoder(), ffat_decode(), ffat_decode_callback(), ffat_decode_flush(), ffmmal_add_packet(), fifo_basic_test(), fifo_overflow_drop_test(), fifo_thread_recover(), fifo_thread_write_packet(), fifo_write_packet(), filter(), filter_units_filter(), flac_finish_header(), flac_queue_flush(), flac_read_timestamp(), flush(), flush_packet(), flv_read_packet(), fourxm_read_packet(), frame_merge_filter(), frame_merge_flush(), free_message(), free_pkt_fifo(), gif_write_packet(), h264_mp4toannexb_filter(), handle_eac3(), handle_id3(), hapqa_extract(), hevc_mp4toannexb_filter(), hls_read_packet(), hls_read_seek(), iec61883_parse_queue_dv(), image_available(), imx_dump_header(), input_thread(), interleaved_write_packet(), libopus_encode(), LLVMFuzzerTestOneInput(), main(), mediacodec_decode_close(), mediacodec_decode_flush(), mediacodec_receive_frame(), mjpeg2jpeg_filter(), mjpega_dump_header(), mkv_write_packet(), mmap_read_frame(), mov2textsub(), mov_create_chapter_track(), mov_create_timecode_track(), mov_read_packet(), mov_write_squashed_packet(), mov_write_subtitle_end_packet(), mov_write_ttml_document_from_queue(), movie_decode_packet(), mp3_header_decompress(), mp3_queue_flush(), mp3lame_encode_frame(), mpa_robust_parse_packet(), mpc_read_seek(), mpeg4_unpack_bframes_filter(), mpegts_get_dts(), mpegts_read_packet(), mpegts_write_packet_internal(), mux_frames(), muxer_thread(), mxf_interleave_get_packet(), new_data_packet(), new_pes_packet(), noise(), nsv_read_close(), packet_queue_put(), parse_packet(), process_input_packet(), prores_metadata(), pulse_read_packet(), qsv_clear_buffers(), qsv_decode_frame(), qt_rtp_parse_packet(), read_frame_internal(), read_gab2_sub(), read_interval_packets(), read_packet(), read_thread(), rechunk_filter(), recode_subtitle(), reset_packet(), rm_assemble_video_frame(), rm_read_packet(), rtp_mpegts_write_packet(), run_test(), decklink_output_callback::ScheduledFrameCompleted(), seek_frame_generic(), seek_subtitle(), setts_filter(), signal_init_ts(), storeframe(), str_read_close(), str_read_packet(), stream_params_copy(), submit_packet(), tdsc_decode_jpeg_tile(), tee_write_packet(), text2movsub(), thread_submit_packet(), trace_headers(), truehd_core_filter(), tta_encode_frame(), tta_queue_flush(), update_context_from_user(), v4l2_m2m_destroy_context(), v4l2_receive_frame(), vfw_read_close(), video_decode(), video_decode_example(), vp8_lossy_decode_frame(), vp9_superframe_filter(), vp9_superframe_flush(), vp9_superframe_split_filter(), vp9_superframe_split_flush(), vtenc_frame(), write_muxed_file(), write_packet(), write_packets_from_bsfs(), write_trailer(), xiph_handle_packet(), yop_read_close(), yop_read_packet(), and yop_read_seek().
Move every field in src to dst and reset src.
src | Source packet, will be reset |
dst | Destination packet |
Definition at line 479 of file avpacket.c.
Referenced by asf_read_packet(), audio_read_packet(), av1_frame_merge_filter(), av1_frame_split_filter(), av_bsf_send_packet(), avcodec_receive_packet(), avpacket_queue_put(), avpriv_packet_list_put(), dts2pts_filter(), dump_extradata(), ff_bsf_get_packet_ref(), ff_interleave_add_packet(), ff_qsv_encode(), ff_thread_video_encode_frame(), ffat_decode_callback(), frame_merge_output(), frame_move(), get_subtitle_pkt(), h264_mp4toannexb_filter(), handle_eac3(), hevc_mp4toannexb_filter(), hls_read_packet(), input_thread(), lavfi_read_packet(), LLVMFuzzerTestOneInput(), mjpega_dump_header(), moflex_read_packet(), mp3_header_decompress(), nsv_read_packet(), packet_queue_get(), packet_queue_put(), pkt_move(), queue_packet(), rechunk_filter(), rm_assemble_video_frame(), setts_filter(), vp9_raw_reorder_make_output(), vp9_superframe_filter(), vp9_superframe_split_filter(), wc3_read_packet(), and yop_read_packet().
Copy only "properties" fields from src to dst.
Properties for the purpose of this function are all the fields beside those related to the packet data (buf, data, size)
dst | Destination packet |
src | Source packet |
Definition at line 385 of file avpacket.c.
Referenced by av_packet_ref(), av_write_frame(), dump_extradata(), extract_packet_props(), ff_reshuffle_raw_rgb(), filter(), frame_merge_filter(), h264_mp4toannexb_filter(), hevc_mp4toannexb_filter(), imx_dump_header(), mjpeg2jpeg_filter(), mjpega_dump_header(), mp3_header_decompress(), rechunk_filter(), recode_subtitle(), text2movsub(), update_context_from_user(), and vp9_superframe_filter().
Ensure the data described by a given packet is reference counted.
pkt | packet whose data should be made reference counted. |
Definition at line 485 of file avpacket.c.
Referenced by av_bsf_send_packet(), avpacket_queue_put(), avpriv_packet_list_put(), ff_interleave_add_packet(), ff_read_packet(), ffmmal_add_packet(), LLVMFuzzerTestOneInput(), parse_packet(), prepare_input_packet(), and queue_packet().
Create a writable reference for the data described by a given packet, avoiding data copy if possible.
pkt | Packet whose data should be made writable. |
Definition at line 504 of file avpacket.c.
Referenced by dv_error_marker_filter(), ftr_decode_frame(), imm5_decode_frame(), mov_write_packet(), mpeg4_unpack_bframes_filter(), noise(), prores_metadata(), and truehd_core_filter().
void av_packet_rescale_ts | ( | AVPacket * | pkt, |
AVRational | tb_src, | ||
AVRational | tb_dst | ||
) |
Convert valid timing fields (timestamps / durations) in a packet from one timebase to another.
Timestamps with unknown values (AV_NOPTS_VALUE) will be ignored.
pkt | packet on which the conversion will be performed |
tb_src | source timebase, in which the timing fields in pkt are expressed |
tb_dst | destination timebase, to which the timing fields will be converted |
Definition at line 526 of file avpacket.c.
Referenced by encode_frame(), encode_write(), encode_write_frame(), ff_write_chained(), fifo_thread_write_packet(), main(), mov_write_ttml_document_from_queue(), rechunk_filter(), tee_write_packet(), write_frame(), write_packet(), and write_packets_from_bsfs().