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.convergence_duration(long setter) |
AVPacket |
AVPacket.data(BytePointer setter) |
AVPacket |
AVPacket.dts(long setter) |
AVPacket |
AVPacket.duration(long setter) |
AVPacket |
AVPacket.flags(int setter) |
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) |
Modifier and Type | Method and Description |
---|---|
int |
AVBitStreamFilter.Filter_AVBSFContext_AVPacket.call(AVBSFContext ctx,
AVPacket pkt) |
int |
AVCodec.Receive_packet_AVCodecContext_AVPacket.call(AVCodecContext avctx,
AVPacket avpkt) |
int |
AVCodec.Encode2_AVCodecContext_AVPacket_AVFrame_IntPointer.call(AVCodecContext avctx,
AVPacket avpkt,
AVFrame frame,
IntPointer got_packet_ptr) |
int |
AVCodec.Decode_AVCodecContext_Pointer_IntPointer_AVPacket.call(AVCodecContext arg0,
Pointer outdata,
IntPointer outdata_size,
AVPacket avpkt) |
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.
|
AVPacket |
AVPacketList.pkt() |
Modifier and Type | Method and Description |
---|---|
AVStream |
AVStream.attached_pic(AVPacket setter) |
int |
AVOutputFormat.Write_packet_AVFormatContext_AVPacket.call(AVFormatContext arg0,
AVPacket pkt) |
int |
AVOutputFormat.Check_bitstream_AVFormatContext_AVPacket.call(AVFormatContext arg0,
AVPacket pkt) |
int |
AVInputFormat.Read_packet_AVFormatContext_AVPacket.call(AVFormatContext arg0,
AVPacket pkt) |
int |
AVOutputFormat.Interleave_packet_AVFormatContext_AVPacket_AVPacket_int.call(AVFormatContext arg0,
AVPacket out,
AVPacket in,
int flush) |
AVPacketList |
AVPacketList.pkt(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 |
avformat.av_apply_bitstream_filters(AVCodecContext codec,
AVPacket pkt,
AVBitStreamFilterContext bsfc)
Deprecated.
|
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 |
avcodec.av_copy_packet_side_data(AVPacket dst,
AVPacket src)
Deprecated.
Use av_packet_copy_props
|
static int |
avcodec.av_copy_packet(AVPacket dst,
AVPacket src)
Deprecated.
Use av_packet_ref
|
static int |
avcodec.av_dup_packet(AVPacket pkt)
Deprecated.
Use av_packet_ref or av_packet_make_refcounted
|
static void |
avcodec.av_free_packet(AVPacket pkt)
Deprecated.
Use av_packet_unref
|
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)
Initialize optional fields of a packet with default values.
|
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 byte[] |
avcodec.av_packet_get_side_data(AVPacket pkt,
int type,
int[] size) |
static ByteBuffer |
avcodec.av_packet_get_side_data(AVPacket pkt,
int type,
IntBuffer size) |
static BytePointer |
avcodec.av_packet_get_side_data(AVPacket pkt,
int type,
IntPointer 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 int |
avcodec.av_packet_merge_side_data(AVPacket pkt)
Deprecated.
|
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,
int 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,
int size)
Shrink the already allocated side data buffer
|
static int |
avcodec.av_packet_split_side_data(AVPacket pkt)
Deprecated.
|
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_audio4(AVCodecContext avctx,
AVFrame frame,
int[] got_frame_ptr,
AVPacket avpkt)
Deprecated.
|
static int |
avcodec.avcodec_decode_audio4(AVCodecContext avctx,
AVFrame frame,
IntBuffer got_frame_ptr,
AVPacket avpkt)
Deprecated.
|
static int |
avcodec.avcodec_decode_audio4(AVCodecContext avctx,
AVFrame frame,
IntPointer got_frame_ptr,
AVPacket avpkt)
Deprecated.
Use avcodec_send_packet() and avcodec_receive_frame().
|
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_decode_video2(AVCodecContext avctx,
AVFrame picture,
int[] got_picture_ptr,
AVPacket avpkt)
Deprecated.
|
static int |
avcodec.avcodec_decode_video2(AVCodecContext avctx,
AVFrame picture,
IntBuffer got_picture_ptr,
AVPacket avpkt)
Deprecated.
|
static int |
avcodec.avcodec_decode_video2(AVCodecContext avctx,
AVFrame picture,
IntPointer got_picture_ptr,
AVPacket avpkt)
Deprecated.
Use avcodec_send_packet() and avcodec_receive_frame().
|
static int |
avcodec.avcodec_encode_audio2(AVCodecContext avctx,
AVPacket avpkt,
AVFrame frame,
int[] got_packet_ptr)
Deprecated.
|
static int |
avcodec.avcodec_encode_audio2(AVCodecContext avctx,
AVPacket avpkt,
AVFrame frame,
IntBuffer got_packet_ptr)
Deprecated.
|
static int |
avcodec.avcodec_encode_audio2(AVCodecContext avctx,
AVPacket avpkt,
AVFrame frame,
IntPointer got_packet_ptr)
Deprecated.
use avcodec_send_frame()/avcodec_receive_packet() instead
|
static int |
avcodec.avcodec_encode_video2(AVCodecContext avctx,
AVPacket avpkt,
AVFrame frame,
int[] got_packet_ptr)
Deprecated.
|
static int |
avcodec.avcodec_encode_video2(AVCodecContext avctx,
AVPacket avpkt,
AVFrame frame,
IntBuffer got_packet_ptr)
Deprecated.
|
static int |
avcodec.avcodec_encode_video2(AVCodecContext avctx,
AVPacket avpkt,
AVFrame frame,
IntPointer got_packet_ptr)
Deprecated.
use avcodec_send_frame()/avcodec_receive_packet() instead
|
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 © 2020. All rights reserved.