FFmpeg 5.1.6
|
This structure stores compressed data. More...
#include <libavcodec/packet.h>
Data Fields | |
AVBufferRef * | buf |
A reference to the reference-counted buffer where the packet data is stored. More... | |
int64_t | pts |
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will be presented to the user. More... | |
int64_t | dts |
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed. More... | |
uint8_t * | data |
int | size |
int | stream_index |
int | flags |
A combination of AV_PKT_FLAG values. More... | |
AVPacketSideData * | side_data |
Additional packet data that can be provided by the container. More... | |
int | side_data_elems |
int64_t | duration |
Duration of this packet in AVStream->time_base units, 0 if unknown. More... | |
int64_t | pos |
byte position in stream, -1 if unknown More... | |
void * | opaque |
for some private data of the user More... | |
AVBufferRef * | opaque_ref |
AVBufferRef for free use by the API user. More... | |
AVRational | time_base |
Time base of the packet's timestamps. More... | |
This structure stores compressed data.
It is typically exported by demuxers and then passed as input to decoders, or received as output from encoders and then passed to muxers.
For video, it should typically contain one compressed frame. For audio it may contain several compressed frames. Encoders are allowed to output empty packets, with no compressed data, containing only side data (e.g. to update some stream parameters at the end of encoding).
The semantics of data ownership depends on the buf field. If it is set, the packet data is dynamically allocated and is valid indefinitely until a call to av_packet_unref() reduces the reference count to 0.
If the buf field is not set av_packet_ref() would make a copy instead of increasing the reference count.
The side data is always allocated with av_malloc(), copied by av_packet_ref() and freed by av_packet_unref().
sizeof(AVPacket) being a part of the public ABI is deprecated. once av_init_packet() is removed, new packets will only be able to be allocated with av_packet_alloc(), and new fields may be added to the end of the struct with a minor bump.
AVBufferRef* AVPacket::buf |
int64_t AVPacket::pts |
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will be presented to the user.
Can be AV_NOPTS_VALUE if it is not stored in the file. pts MUST be larger or equal to dts as presentation cannot happen before decompression, unless one wants to view hex dumps. Some formats misuse the terms dts and pts/cts to mean something different. Such timestamps must be converted to true pts/dts before they are stored in AVPacket.
Definition at line 367 of file packet.h.
Referenced by encode(), and log_packet().
int64_t AVPacket::dts |
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed.
Can be AV_NOPTS_VALUE if it is not stored in the file.
Definition at line 373 of file packet.h.
Referenced by log_packet().
uint8_t* AVPacket::data |
Definition at line 374 of file packet.h.
Referenced by encode(), encode_write(), and main().
int AVPacket::size |
Definition at line 375 of file packet.h.
Referenced by encode(), encode_write(), and main().
int AVPacket::stream_index |
Definition at line 376 of file packet.h.
Referenced by encode_write(), encode_write_frame(), log_packet(), main(), and write_frame().
AVPacketSideData* AVPacket::side_data |
int64_t AVPacket::duration |
Duration of this packet in AVStream->time_base units, 0 if unknown.
Equals next_pts - this_pts in presentation order.
Definition at line 392 of file packet.h.
Referenced by log_packet().
int64_t AVPacket::pos |
byte position in stream, -1 if unknown
Definition at line 394 of file packet.h.
Referenced by main().
AVBufferRef* AVPacket::opaque_ref |
AVBufferRef for free use by the API user.
FFmpeg will never check the contents of the buffer ref. FFmpeg calls av_buffer_unref() on it when the packet is unreferenced. av_packet_copy_props() calls create a new reference with av_buffer_ref() for the target packet's opaque_ref field.
This is unrelated to the opaque field, although it serves a similar purpose.
AVRational AVPacket::time_base |