Package | Description |
---|---|
org.bytedeco.ffmpeg.avcodec | |
org.bytedeco.ffmpeg.avformat | |
org.bytedeco.ffmpeg.global |
Modifier and Type | Method and Description |
---|---|
AVPacket |
AVPacket.buf(AVBufferRef setter) |
AVPacket |
AVPacket.data(BytePointer setter) |
AVPacket |
AVPacket.dts(long setter) |
AVPacket |
AVPacket.duration(long setter) |
AVPacket |
AVPacket.flags(int setter) |
AVPacket |
AVPacket.getPointer(long i) |
AVPacket |
AVPacket.opaque_ref(AVBufferRef setter) |
AVPacket |
AVPacket.opaque(Pointer setter) |
AVPacket |
AVPacketList.pkt() |
AVPacket |
AVPacket.pos(long setter) |
AVPacket |
AVPacket.position(long position) |
AVPacket |
AVPacket.pts(long setter) |
AVPacket |
AVPacket.side_data_elems(int setter) |
AVPacket |
AVPacket.side_data(AVPacketSideData setter) |
AVPacket |
AVPacket.size(int setter) |
AVPacket |
AVPacket.stream_index(int setter) |
AVPacket |
AVPacket.time_base(AVRational setter) |
Modifier and Type | Method and Description |
---|---|
int |
AVCodecContext.Get_encode_buffer_AVCodecContext_AVPacket_int.call(AVCodecContext s,
AVPacket pkt,
int flags) |
AVPacketList |
AVPacketList.pkt(AVPacket setter) |
Modifier and Type | Method and Description |
---|---|
AVPacket |
AVStream.attached_pic()
For streams with AV_DISPOSITION_ATTACHED_PIC disposition, this packet
will contain the attached picture.
|
Modifier and Type | Method and Description |
---|---|
AVStream |
AVStream.attached_pic(AVPacket setter) |
Modifier and Type | Method and Description |
---|---|
static AVPacket |
avcodec.av_packet_alloc()
Allocate an AVPacket and set its fields to default values.
|
static AVPacket |
avcodec.av_packet_clone(AVPacket src)
Create a new packet that references the same data as src.
|
Modifier and Type | Method and Description |
---|---|
static int |
avformat.av_append_packet(AVIOContext s,
AVPacket pkt,
int size)
Read data and append it to the current content of the AVPacket.
|
static int |
avcodec.av_bsf_receive_packet(AVBSFContext ctx,
AVPacket pkt)
Retrieve a filtered packet.
|
static int |
avcodec.av_bsf_send_packet(AVBSFContext ctx,
AVPacket pkt)
Submit a packet for filtering.
|
static int |
avformat.av_get_packet(AVIOContext s,
AVPacket pkt,
int size)
Allocate and read the payload of a packet and initialize its
fields with default values.
|
static int |
avcodec.av_grow_packet(AVPacket pkt,
int grow_by)
Increase packet size, correctly zeroing padding
|
static void |
avcodec.av_init_packet(AVPacket pkt)
Deprecated.
This function is deprecated. Once it's removed,
sizeof(AVPacket) will not be a part of the ABI anymore.
|
static int |
avformat.av_interleaved_write_frame(AVFormatContext s,
AVPacket pkt)
Write a packet to an output media file ensuring correct interleaving.
|
static int |
avcodec.av_new_packet(AVPacket pkt,
int size)
Allocate the payload of a packet and initialize its fields with
default values.
|
static int |
avcodec.av_packet_add_side_data(AVPacket pkt,
int type,
byte[] data,
long size) |
static int |
avcodec.av_packet_add_side_data(AVPacket pkt,
int type,
ByteBuffer data,
long size) |
static int |
avcodec.av_packet_add_side_data(AVPacket pkt,
int type,
BytePointer data,
long size)
Wrap an existing array as a packet side data.
|
static AVPacket |
avcodec.av_packet_clone(AVPacket src)
Create a new packet that references the same data as src.
|
static int |
avcodec.av_packet_copy_props(AVPacket dst,
AVPacket src)
Copy only "properties" fields from src to dst.
|
static void |
avcodec.av_packet_free_side_data(AVPacket pkt)
Convenience function to free all the side data stored.
|
static void |
avcodec.av_packet_free(AVPacket pkt) |
static int |
avcodec.av_packet_from_data(AVPacket pkt,
byte[] data,
int size) |
static int |
avcodec.av_packet_from_data(AVPacket pkt,
ByteBuffer data,
int size) |
static int |
avcodec.av_packet_from_data(AVPacket pkt,
BytePointer data,
int size)
Initialize a reference-counted packet from av_malloc()ed data.
|
static BytePointer |
avcodec.av_packet_get_side_data(AVPacket pkt,
int type,
SizeTPointer size)
Get side information from packet.
|
static int |
avcodec.av_packet_make_refcounted(AVPacket pkt)
Ensure the data described by a given packet is reference counted.
|
static int |
avcodec.av_packet_make_writable(AVPacket pkt)
Create a writable reference for the data described by a given packet,
avoiding data copy if possible.
|
static void |
avcodec.av_packet_move_ref(AVPacket dst,
AVPacket src)
Move every field in src to dst and reset src.
|
static BytePointer |
avcodec.av_packet_new_side_data(AVPacket pkt,
int type,
long size)
Allocate new information of a packet.
|
static int |
avcodec.av_packet_ref(AVPacket dst,
AVPacket src)
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.
|
static void |
avcodec.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.
|
static int |
avcodec.av_packet_shrink_side_data(AVPacket pkt,
int type,
long size)
Shrink the already allocated side data buffer
|
static void |
avcodec.av_packet_unref(AVPacket pkt)
Wipe the packet.
|
static void |
avformat.av_pkt_dump_log2(Pointer avcl,
int level,
AVPacket pkt,
int dump_payload,
AVStream st)
Send a nice dump of a packet to the log.
|
static void |
avformat.av_pkt_dump2(Pointer f,
AVPacket pkt,
int dump_payload,
AVStream st)
Send a nice dump of a packet to the specified file stream.
|
static int |
avformat.av_read_frame(AVFormatContext s,
AVPacket pkt)
Return the next frame of a stream.
|
static void |
avcodec.av_shrink_packet(AVPacket pkt,
int size)
Reduce packet size, correctly zeroing padding
|
static int |
avformat.av_write_frame(AVFormatContext s,
AVPacket pkt)
Write a packet to an output media file.
|
static int |
avcodec.avcodec_decode_subtitle2(AVCodecContext avctx,
AVSubtitle sub,
int[] got_sub_ptr,
AVPacket avpkt) |
static int |
avcodec.avcodec_decode_subtitle2(AVCodecContext avctx,
AVSubtitle sub,
IntBuffer got_sub_ptr,
AVPacket avpkt) |
static int |
avcodec.avcodec_decode_subtitle2(AVCodecContext avctx,
AVSubtitle sub,
IntPointer got_sub_ptr,
AVPacket avpkt)
Decode a subtitle message.
|
static int |
avcodec.avcodec_default_get_encode_buffer(AVCodecContext s,
AVPacket pkt,
int flags)
The default callback for AVCodecContext.get_encode_buffer().
|
static int |
avcodec.avcodec_receive_packet(AVCodecContext avctx,
AVPacket avpkt)
Read encoded data from the encoder.
|
static int |
avcodec.avcodec_send_packet(AVCodecContext avctx,
AVPacket avpkt)
Supply raw packet data as input to a decoder.
|
Copyright © 2024. All rights reserved.