| Package | Description |
|---|---|
| org.bytedeco.javacpp |
| Modifier and Type | Method and Description |
|---|---|
avcodec.AVPacket |
avformat.AVStream.attached_pic()
For streams with AV_DISPOSITION_ATTACHED_PIC disposition, this packet
will contain the attached picture.
|
avcodec.AVPacket |
avcodec.AVPacket.buf(avutil.AVBufferRef buf) |
avcodec.AVPacket |
avcodec.AVPacket.convergence_duration(long convergence_duration) |
avcodec.AVPacket |
avcodec.AVPacket.data(BytePointer data) |
avcodec.AVPacket |
avcodec.AVPacket.destruct(avcodec.AVPacket.Destruct_AVPacket destruct) |
avcodec.AVPacket |
avcodec.AVPacket.dts(long dts) |
avcodec.AVPacket |
avcodec.AVPacket.duration(int duration) |
avcodec.AVPacket |
avcodec.AVPacket.flags(int flags) |
avcodec.AVPacket |
avcodec.AVCodecContext.pkt()
Deprecated.
this field is not supposed to be accessed from outside lavc
|
avcodec.AVPacket |
avformat.AVPacketList.pkt() |
avcodec.AVPacket |
avcodec.AVPacket.pos(long pos) |
avcodec.AVPacket |
avcodec.AVPacket.position(int position) |
avcodec.AVPacket |
avcodec.AVPacket.priv(Pointer priv) |
avcodec.AVPacket |
avcodec.AVPacket.pts(long pts) |
avcodec.AVPacket |
avcodec.AVPacket.side_data_elems(int side_data_elems) |
avcodec.AVPacket |
avcodec.AVPacket.side_data(avcodec.AVPacketSideData side_data) |
avcodec.AVPacket |
avcodec.AVPacket.size(int size) |
avcodec.AVPacket |
avcodec.AVPacket.stream_index(int stream_index) |
| Modifier and Type | Method and Description |
|---|---|
avformat.AVStream |
avformat.AVStream.attached_pic(avcodec.AVPacket attached_pic) |
static int |
avformat.av_append_packet(avformat.AVIOContext s,
avcodec.AVPacket pkt,
int size)
Read data and append it to the current content of the AVPacket.
|
static int |
avcodec.av_copy_packet_side_data(avcodec.AVPacket dst,
avcodec.AVPacket src)
Copy packet side data
|
static int |
avcodec.av_copy_packet(avcodec.AVPacket dst,
avcodec.AVPacket src)
Copy packet, including contents
|
static void |
avcodec.av_destruct_packet(avcodec.AVPacket pkt)
Deprecated.
use the AVBuffer API instead
|
static int |
avcodec.av_dup_packet(avcodec.AVPacket pkt) |
static void |
avcodec.av_free_packet(avcodec.AVPacket pkt)
Free a packet.
|
static int |
avformat.av_get_packet(avformat.AVIOContext s,
avcodec.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(avcodec.AVPacket pkt,
int grow_by)
Increase packet size, correctly zeroing padding
|
static void |
avcodec.av_init_packet(avcodec.AVPacket pkt)
Initialize optional fields of a packet with default values.
|
static int |
avformat.av_interleaved_write_frame(avformat.AVFormatContext s,
avcodec.AVPacket pkt)
Write a packet to an output media file ensuring correct interleaving.
|
static int |
avcodec.av_new_packet(avcodec.AVPacket pkt,
int size)
Allocate the payload of a packet and initialize its fields with
default values.
|
static int |
avcodec.av_packet_copy_props(avcodec.AVPacket dst,
avcodec.AVPacket src)
Copy only "properties" fields from src to dst.
|
static void |
avcodec.av_packet_free_side_data(avcodec.AVPacket pkt)
Convenience function to free all the side data stored.
|
static int |
avcodec.av_packet_from_data(avcodec.AVPacket pkt,
byte[] data,
int size) |
static int |
avcodec.av_packet_from_data(avcodec.AVPacket pkt,
ByteBuffer data,
int size) |
static int |
avcodec.av_packet_from_data(avcodec.AVPacket pkt,
BytePointer data,
int size)
Initialize a reference-counted packet from av_malloc()ed data.
|
static byte[] |
avcodec.av_packet_get_side_data(avcodec.AVPacket pkt,
int type,
int[] size) |
static ByteBuffer |
avcodec.av_packet_get_side_data(avcodec.AVPacket pkt,
int type,
IntBuffer size) |
static BytePointer |
avcodec.av_packet_get_side_data(avcodec.AVPacket pkt,
int type,
IntPointer size)
Get side information from packet.
|
static int |
avcodec.av_packet_merge_side_data(avcodec.AVPacket pkt) |
static void |
avcodec.av_packet_move_ref(avcodec.AVPacket dst,
avcodec.AVPacket src)
Move every field in src to dst and reset src.
|
static BytePointer |
avcodec.av_packet_new_side_data(avcodec.AVPacket pkt,
int type,
int size)
Allocate new information of a packet.
|
static int |
avcodec.av_packet_ref(avcodec.AVPacket dst,
avcodec.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(avcodec.AVPacket pkt,
avutil.AVRational tb_src,
avutil.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(avcodec.AVPacket pkt,
int type,
int size)
Shrink the already allocated side data buffer
|
static int |
avcodec.av_packet_split_side_data(avcodec.AVPacket pkt) |
static void |
avcodec.av_packet_unref(avcodec.AVPacket pkt)
Wipe the packet.
|
static void |
avformat.av_pkt_dump_log2(Pointer avcl,
int level,
avcodec.AVPacket pkt,
int dump_payload,
avformat.AVStream st)
Send a nice dump of a packet to the log.
|
static void |
avformat.av_pkt_dump2(Pointer f,
avcodec.AVPacket pkt,
int dump_payload,
avformat.AVStream st)
Send a nice dump of a packet to the specified file stream.
|
static int |
avformat.av_read_frame(avformat.AVFormatContext s,
avcodec.AVPacket pkt)
Return the next frame of a stream.
|
static void |
avcodec.av_shrink_packet(avcodec.AVPacket pkt,
int size)
Reduce packet size, correctly zeroing padding
|
static int |
avformat.av_write_frame(avformat.AVFormatContext s,
avcodec.AVPacket pkt)
Write a packet to an output media file.
|
static int |
avcodec.avcodec_decode_audio3(avcodec.AVCodecContext avctx,
short[] samples,
int[] frame_size_ptr,
avcodec.AVPacket avpkt)
Deprecated.
|
static int |
avcodec.avcodec_decode_audio3(avcodec.AVCodecContext avctx,
ShortBuffer samples,
IntBuffer frame_size_ptr,
avcodec.AVPacket avpkt)
Deprecated.
|
static int |
avcodec.avcodec_decode_audio3(avcodec.AVCodecContext avctx,
ShortPointer samples,
IntPointer frame_size_ptr,
avcodec.AVPacket avpkt)
Deprecated.
Use avcodec_decode_audio4 instead.
Decode the audio frame of size avpkt->size from avpkt->data into samples.
Some decoders may support multiple frames in a single AVPacket, such
decoders would then just decode the first frame. In this case,
avcodec_decode_audio3 has to be called again with an AVPacket that contains
the remaining data in order to decode the second frame etc.
If no frame
could be outputted, frame_size_ptr is zero. Otherwise, it is the
decompressed frame size in bytes.
|
static int |
avcodec.avcodec_decode_audio4(avcodec.AVCodecContext avctx,
avutil.AVFrame frame,
int[] got_frame_ptr,
avcodec.AVPacket avpkt) |
static int |
avcodec.avcodec_decode_audio4(avcodec.AVCodecContext avctx,
avutil.AVFrame frame,
IntBuffer got_frame_ptr,
avcodec.AVPacket avpkt) |
static int |
avcodec.avcodec_decode_audio4(avcodec.AVCodecContext avctx,
avutil.AVFrame frame,
IntPointer got_frame_ptr,
avcodec.AVPacket avpkt)
Decode the audio frame of size avpkt->size from avpkt->data into frame.
|
static int |
avcodec.avcodec_decode_subtitle2(avcodec.AVCodecContext avctx,
avcodec.AVSubtitle sub,
int[] got_sub_ptr,
avcodec.AVPacket avpkt) |
static int |
avcodec.avcodec_decode_subtitle2(avcodec.AVCodecContext avctx,
avcodec.AVSubtitle sub,
IntBuffer got_sub_ptr,
avcodec.AVPacket avpkt) |
static int |
avcodec.avcodec_decode_subtitle2(avcodec.AVCodecContext avctx,
avcodec.AVSubtitle sub,
IntPointer got_sub_ptr,
avcodec.AVPacket avpkt)
Decode a subtitle message.
|
static int |
avcodec.avcodec_decode_video2(avcodec.AVCodecContext avctx,
avutil.AVFrame picture,
int[] got_picture_ptr,
avcodec.AVPacket avpkt) |
static int |
avcodec.avcodec_decode_video2(avcodec.AVCodecContext avctx,
avutil.AVFrame picture,
IntBuffer got_picture_ptr,
avcodec.AVPacket avpkt) |
static int |
avcodec.avcodec_decode_video2(avcodec.AVCodecContext avctx,
avutil.AVFrame picture,
IntPointer got_picture_ptr,
avcodec.AVPacket avpkt)
Decode the video frame of size avpkt->size from avpkt->data into picture.
|
static int |
avcodec.avcodec_encode_audio2(avcodec.AVCodecContext avctx,
avcodec.AVPacket avpkt,
avutil.AVFrame frame,
int[] got_packet_ptr) |
static int |
avcodec.avcodec_encode_audio2(avcodec.AVCodecContext avctx,
avcodec.AVPacket avpkt,
avutil.AVFrame frame,
IntBuffer got_packet_ptr) |
static int |
avcodec.avcodec_encode_audio2(avcodec.AVCodecContext avctx,
avcodec.AVPacket avpkt,
avutil.AVFrame frame,
IntPointer got_packet_ptr)
Encode a frame of audio.
|
static int |
avcodec.avcodec_encode_video2(avcodec.AVCodecContext avctx,
avcodec.AVPacket avpkt,
avutil.AVFrame frame,
int[] got_packet_ptr) |
static int |
avcodec.avcodec_encode_video2(avcodec.AVCodecContext avctx,
avcodec.AVPacket avpkt,
avutil.AVFrame frame,
IntBuffer got_packet_ptr) |
static int |
avcodec.avcodec_encode_video2(avcodec.AVCodecContext avctx,
avcodec.AVPacket avpkt,
avutil.AVFrame frame,
IntPointer got_packet_ptr)
Encode a frame of video.
|
int |
avcodec.AVCodec.Encode2_AVCodecContext_AVPacket_AVFrame_IntPointer.call(avcodec.AVCodecContext avctx,
avcodec.AVPacket avpkt,
avutil.AVFrame frame,
IntPointer got_packet_ptr) |
int |
avcodec.AVCodec.Decode_AVCodecContext_Pointer_IntPointer_AVPacket.call(avcodec.AVCodecContext arg0,
Pointer outdata,
IntPointer outdata_size,
avcodec.AVPacket avpkt) |
void |
avcodec.AVPacket.Destruct_AVPacket.call(avcodec.AVPacket arg0)
Deprecated.
|
int |
avformat.AVOutputFormat.Write_packet_AVFormatContext_AVPacket.call(avformat.AVFormatContext arg0,
avcodec.AVPacket pkt) |
int |
avformat.AVInputFormat.Read_packet_AVFormatContext_AVPacket.call(avformat.AVFormatContext arg0,
avcodec.AVPacket pkt) |
int |
avformat.AVOutputFormat.Interleave_packet_AVFormatContext_AVPacket_AVPacket_int.call(avformat.AVFormatContext arg0,
avcodec.AVPacket out,
avcodec.AVPacket in,
int flush) |
avcodec.AVCodecContext |
avcodec.AVCodecContext.pkt(avcodec.AVPacket pkt) |
avformat.AVPacketList |
avformat.AVPacketList.pkt(avcodec.AVPacket pkt) |
Copyright © 2015. All Rights Reserved.