mirror of
https://github.com/qrtc/ffmpeg-dev-go.git
synced 2025-10-04 07:17:36 +08:00
1344 lines
43 KiB
Go
1344 lines
43 KiB
Go
package ffmpeg
|
|
|
|
/*
|
|
#include <libavutil/frame.h>
|
|
*/
|
|
import "C"
|
|
import "unsafe"
|
|
|
|
// AVFrameSideDataType
|
|
type AVFrameSideDataType = C.enum_AVFrameSideDataType
|
|
|
|
const (
|
|
AV_FRAME_DATA_PANSCAN = AVFrameSideDataType(C.AV_FRAME_DATA_PANSCAN)
|
|
AV_FRAME_DATA_A53_CC = AVFrameSideDataType(C.AV_FRAME_DATA_A53_CC)
|
|
AV_FRAME_DATA_STEREO3D = AVFrameSideDataType(C.AV_FRAME_DATA_STEREO3D)
|
|
AV_FRAME_DATA_MATRIXENCODING = AVFrameSideDataType(C.AV_FRAME_DATA_MATRIXENCODING)
|
|
AV_FRAME_DATA_DOWNMIX_INFO = AVFrameSideDataType(C.AV_FRAME_DATA_DOWNMIX_INFO)
|
|
AV_FRAME_DATA_REPLAYGAIN = AVFrameSideDataType(C.AV_FRAME_DATA_REPLAYGAIN)
|
|
AV_FRAME_DATA_DISPLAYMATRIX = AVFrameSideDataType(C.AV_FRAME_DATA_DISPLAYMATRIX)
|
|
AV_FRAME_DATA_AFD = AVFrameSideDataType(C.AV_FRAME_DATA_AFD)
|
|
AV_FRAME_DATA_MOTION_VECTORS = AVFrameSideDataType(C.AV_FRAME_DATA_MOTION_VECTORS)
|
|
AV_FRAME_DATA_SKIP_SAMPLES = AVFrameSideDataType(C.AV_FRAME_DATA_SKIP_SAMPLES)
|
|
AV_FRAME_DATA_AUDIO_SERVICE_TYPE = AVFrameSideDataType(C.AV_FRAME_DATA_AUDIO_SERVICE_TYPE)
|
|
AV_FRAME_DATA_MASTERING_DISPLAY_METADATA = AVFrameSideDataType(C.AV_FRAME_DATA_MASTERING_DISPLAY_METADATA)
|
|
AV_FRAME_DATA_GOP_TIMECODE = AVFrameSideDataType(C.AV_FRAME_DATA_GOP_TIMECODE)
|
|
AV_FRAME_DATA_SPHERICAL = AVFrameSideDataType(C.AV_FRAME_DATA_SPHERICAL)
|
|
AV_FRAME_DATA_CONTENT_LIGHT_LEVEL = AVFrameSideDataType(C.AV_FRAME_DATA_CONTENT_LIGHT_LEVEL)
|
|
AV_FRAME_DATA_ICC_PROFILE = AVFrameSideDataType(C.AV_FRAME_DATA_ICC_PROFILE)
|
|
AV_FRAME_DATA_QP_TABLE_PROPERTIES = AVFrameSideDataType(C.AV_FRAME_DATA_QP_TABLE_PROPERTIES)
|
|
AV_FRAME_DATA_QP_TABLE_DATA = AVFrameSideDataType(C.AV_FRAME_DATA_QP_TABLE_DATA)
|
|
AV_FRAME_DATA_S12M_TIMECODE = AVFrameSideDataType(C.AV_FRAME_DATA_S12M_TIMECODE)
|
|
AV_FRAME_DATA_DYNAMIC_HDR_PLUS = AVFrameSideDataType(C.AV_FRAME_DATA_DYNAMIC_HDR_PLUS)
|
|
AV_FRAME_DATA_REGIONS_OF_INTEREST = AVFrameSideDataType(C.AV_FRAME_DATA_REGIONS_OF_INTEREST)
|
|
AV_FRAME_DATA_VIDEO_ENC_PARAMS = AVFrameSideDataType(C.AV_FRAME_DATA_VIDEO_ENC_PARAMS)
|
|
AV_FRAME_DATA_SEI_UNREGISTERED = AVFrameSideDataType(C.AV_FRAME_DATA_SEI_UNREGISTERED)
|
|
AV_FRAME_DATA_FILM_GRAIN_PARAMS = AVFrameSideDataType(C.AV_FRAME_DATA_FILM_GRAIN_PARAMS)
|
|
)
|
|
|
|
// AVActiveFormatDescription
|
|
type AVActiveFormatDescription = C.enum_AVActiveFormatDescription
|
|
|
|
const (
|
|
AV_AFD_SAME = AVActiveFormatDescription(C.AV_AFD_SAME)
|
|
AV_AFD_4_3 = AVActiveFormatDescription(C.AV_AFD_4_3)
|
|
AV_AFD_16_9 = AVActiveFormatDescription(C.AV_AFD_16_9)
|
|
AV_AFD_14_9 = AVActiveFormatDescription(C.AV_AFD_14_9)
|
|
AV_AFD_4_3_SP_14_9 = AVActiveFormatDescription(C.AV_AFD_4_3_SP_14_9)
|
|
AV_AFD_16_9_SP_14_9 = AVActiveFormatDescription(C.AV_AFD_16_9_SP_14_9)
|
|
AV_AFD_SP_4_3 = AVActiveFormatDescription(C.AV_AFD_SP_4_3)
|
|
)
|
|
|
|
// Structure to hold side data for an AVFrame.
|
|
type AVFrameSideData C.struct_AVFrameSideData
|
|
|
|
// Custom: GetType gets `AVFrameSideData.type` value.
|
|
func (sd *AVFrameSideData) GetType() AVFrameSideDataType {
|
|
return (AVFrameSideDataType)(sd._type)
|
|
}
|
|
|
|
// Custom: SetType sets `AVFrameSideData.type` value.
|
|
func (sd *AVFrameSideData) SetType(v AVFrameSideDataType) {
|
|
sd._type = (C.enum_AVFrameSideDataType)(v)
|
|
}
|
|
|
|
// Custom: GetTypeAddr gets `AVFrameSideData.type` address.
|
|
func (sd *AVFrameSideData) GetTypeAddr() *AVFrameSideDataType {
|
|
return (*AVFrameSideDataType)(&sd._type)
|
|
}
|
|
|
|
// Custom: GetData gets `AVFrameSideData.data` value.
|
|
func (sd *AVFrameSideData) GetData() *uint8 {
|
|
return (*uint8)(sd.data)
|
|
}
|
|
|
|
// Custom: SetData sets `AVFrameSideData.data` value.
|
|
func (sd *AVFrameSideData) SetData(v *uint8) {
|
|
sd.data = (*C.uint8_t)(v)
|
|
}
|
|
|
|
// Custom: GetDataAddr gets `AVFrameSideData.data` address.
|
|
func (sd *AVFrameSideData) GetDataAddr() **uint8 {
|
|
return (**uint8)(unsafe.Pointer(&sd.data))
|
|
}
|
|
|
|
// Custom: GetSize gets `AVFrameSideData.size` value.
|
|
func (sd *AVFrameSideData) GetSize() int32 {
|
|
return (int32)(sd.size)
|
|
}
|
|
|
|
// Custom: SetSize sets `AVFrameSideData.size` value.
|
|
func (sd *AVFrameSideData) SetSize(v int32) {
|
|
sd.size = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetSizeAddr gets `AVFrameSideData.size` address.
|
|
func (sd *AVFrameSideData) GetSizeAddr() *int32 {
|
|
return (*int32)(&sd.size)
|
|
}
|
|
|
|
// Custom: GetMetadata gets `AVFrameSideData.metadata` value.
|
|
func (sd *AVFrameSideData) GetMetadata() *AVDictionary {
|
|
return (*AVDictionary)(sd.metadata)
|
|
}
|
|
|
|
// Custom: SetMetadata sets `AVFrameSideData.metadata` value.
|
|
func (sd *AVFrameSideData) SetMetadata(v *AVDictionary) {
|
|
sd.metadata = (*C.struct_AVDictionary)(v)
|
|
}
|
|
|
|
// Custom: GetMetadataAddr gets `AVFrameSideData.metadata` address.
|
|
func (sd *AVFrameSideData) GetMetadataAddr() **AVDictionary {
|
|
return (**AVDictionary)(unsafe.Pointer(&sd.metadata))
|
|
}
|
|
|
|
// Custom: GetBuf gets `AVFrameSideData.buf` value.
|
|
func (sd *AVFrameSideData) GetBuf() *AVBufferRef {
|
|
return (*AVBufferRef)(sd.buf)
|
|
}
|
|
|
|
// Custom: SetBuf sets `AVFrameSideData.buf` value.
|
|
func (sd *AVFrameSideData) SetBuf(v *AVBufferRef) {
|
|
sd.buf = (*C.struct_AVBufferRef)(v)
|
|
}
|
|
|
|
// Custom: GetBufAddr gets `AVFrameSideData.buf` address.
|
|
func (sd *AVFrameSideData) GetBufAddr() **AVBufferRef {
|
|
return (**AVBufferRef)(unsafe.Pointer(&sd.buf))
|
|
}
|
|
|
|
// Structure describing a single Region Of Interest.
|
|
type AVRegionOfInterest C.struct_AVRegionOfInterest
|
|
|
|
// Custom: GetSelfSize gets `AVRegionOfInterest.self_size` value.
|
|
func (roi *AVRegionOfInterest) GetSelfSize() uint32 {
|
|
return (uint32)(roi.self_size)
|
|
}
|
|
|
|
// Custom: SetSelfSize sets `AVRegionOfInterest.self_size` value.
|
|
func (roi *AVRegionOfInterest) SetSelfSize(v uint32) {
|
|
roi.self_size = (C.uint32_t)(v)
|
|
}
|
|
|
|
// Custom: GetSelfSizeAddr gets `AVRegionOfInterest.self_size` address.
|
|
func (roi *AVRegionOfInterest) GetSelfSizeAddr() *uint32 {
|
|
return (*uint32)(&roi.self_size)
|
|
}
|
|
|
|
// Custom: GetTop gets `AVRegionOfInterest.top` value.
|
|
func (roi *AVRegionOfInterest) GetTop() int32 {
|
|
return (int32)(roi.top)
|
|
}
|
|
|
|
// Custom: SetTop sets `AVRegionOfInterest.top` value.
|
|
func (roi *AVRegionOfInterest) SetTop(v int32) {
|
|
roi.top = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetTopAddr gets `AVRegionOfInterest.top` address.
|
|
func (roi *AVRegionOfInterest) GetTopAddr() *int32 {
|
|
return (*int32)(&roi.top)
|
|
}
|
|
|
|
// Custom: GetBottom gets `AVRegionOfInterest.bottom` value.
|
|
func (roi *AVRegionOfInterest) GetBottom() int32 {
|
|
return (int32)(roi.bottom)
|
|
}
|
|
|
|
// Custom: SetBottom sets `AVRegionOfInterest.bottom` value.
|
|
func (roi *AVRegionOfInterest) SetBottom(v int32) {
|
|
roi.bottom = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetBottomAddr gets `AVRegionOfInterest.bottom` address.
|
|
func (roi *AVRegionOfInterest) GetBottomAddr() *int32 {
|
|
return (*int32)(&roi.bottom)
|
|
}
|
|
|
|
// Custom: GetLeft gets `AVRegionOfInterest.left` value.
|
|
func (roi *AVRegionOfInterest) GetLeft() int32 {
|
|
return (int32)(roi.left)
|
|
}
|
|
|
|
// Custom: SetLeft sets `AVRegionOfInterest.left` value.
|
|
func (roi *AVRegionOfInterest) SetLeft(v int32) {
|
|
roi.left = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetLeftAddr gets `AVRegionOfInterest.left` address.
|
|
func (roi *AVRegionOfInterest) GetLeftAddr() *int32 {
|
|
return (*int32)(&roi.left)
|
|
}
|
|
|
|
// Custom: GetRight gets `AVRegionOfInterest.right` value.
|
|
func (roi *AVRegionOfInterest) GetRight() int32 {
|
|
return (int32)(roi.right)
|
|
}
|
|
|
|
// Custom: SetRight sets `AVRegionOfInterest.right` value.
|
|
func (roi *AVRegionOfInterest) SetRight(v int32) {
|
|
roi.right = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetRightAddr gets `AVRegionOfInterest.right` address.
|
|
func (roi *AVRegionOfInterest) GetRightAddr() *int32 {
|
|
return (*int32)(&roi.right)
|
|
}
|
|
|
|
// Custom: GetQoffset gets `AVRegionOfInterest.qoffset` value.
|
|
func (roi *AVRegionOfInterest) GetQoffset() AVRational {
|
|
return (AVRational)(roi.qoffset)
|
|
}
|
|
|
|
// Custom: SetQoffset sets `AVRegionOfInterest.qoffset` value.
|
|
func (roi *AVRegionOfInterest) SetQoffset(v AVRational) {
|
|
roi.qoffset = (C.struct_AVRational)(v)
|
|
}
|
|
|
|
// Custom: GetQoffsetAddr gets `AVRegionOfInterest.qoffset` address.
|
|
func (roi *AVRegionOfInterest) GetQoffsetAddr() *AVRational {
|
|
return (*AVRational)(&roi.qoffset)
|
|
}
|
|
|
|
// AVFrame
|
|
type AVFrame C.struct_AVFrame
|
|
|
|
const (
|
|
AV_NUM_DATA_POINTERS = C.AV_NUM_DATA_POINTERS
|
|
)
|
|
|
|
// Custom: GetData gets `AVFrame.data` value.
|
|
func (frame *AVFrame) GetData() []*uint8 {
|
|
return unsafe.Slice((**uint8)(unsafe.Pointer(&frame.data[0])), AV_NUM_DATA_POINTERS)
|
|
}
|
|
|
|
// Custom: GetDataAddr gets `AVFrame.data` address.
|
|
func (frame *AVFrame) GetDataAddr() ***uint8 {
|
|
return (***uint8)(unsafe.Pointer(&frame.data))
|
|
}
|
|
|
|
// Custom: GetDataIdx gets `AVFrame.data` index value.
|
|
func (frame *AVFrame) GetDataIdx(idx int) *uint8 {
|
|
return (*uint8)(frame.data[idx])
|
|
}
|
|
|
|
// Custom: SetDataIdx sets `AVFrame.data` index value.
|
|
func (frame *AVFrame) SetDataIdx(idx int, v *uint8) {
|
|
frame.data[idx] = (*C.uint8_t)(v)
|
|
}
|
|
|
|
// Custom: GetDataIdxAddr gets `AVFrame.data` index address.
|
|
func (frame *AVFrame) GetDataIdxAddr(idx int) **uint8 {
|
|
return (**uint8)(unsafe.Pointer(&frame.data[idx]))
|
|
}
|
|
|
|
// Custom: GetLinesize gets `AVFrame.linesize` value.
|
|
func (frame *AVFrame) GetLinesize() []int32 {
|
|
return unsafe.Slice((*int32)(&frame.linesize[0]), AV_NUM_DATA_POINTERS)
|
|
}
|
|
|
|
// Custom: GetLinesizeAddr gets `AVFrame.linesize` address.
|
|
func (frame *AVFrame) GetLinesizeAddr() **int32 {
|
|
return (**int32)(unsafe.Pointer(&frame.linesize))
|
|
}
|
|
|
|
// Custom: GetLinesizeIdx gets `AVFrame.linesize` index value.
|
|
func (frame *AVFrame) GetLinesizeIdx(idx int) int32 {
|
|
return (int32)(frame.linesize[idx])
|
|
}
|
|
|
|
// Custom: SetLinesizeIdx sets `AVFrame.linesize` index value.
|
|
func (frame *AVFrame) SetLinesizeIdx(idx int, v int32) {
|
|
frame.linesize[idx] = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetLinesizeIdxAddr gets `AVFrame.linesize` index address.
|
|
func (frame *AVFrame) GetLinesizeIdxAddr(idx int) *int32 {
|
|
return (*int32)(&frame.linesize[idx])
|
|
}
|
|
|
|
// Custom: GetExtendedData gets `AVFrame.extended_data` value.
|
|
func (frame *AVFrame) GetExtendedData() **uint8 {
|
|
return (**uint8)(unsafe.Pointer(frame.extended_data))
|
|
}
|
|
|
|
// Custom: SetExtendedData sets `AVFrame.extended_data` value.
|
|
func (frame *AVFrame) SetExtendedData(v **uint8) {
|
|
frame.extended_data = (**C.uint8_t)(unsafe.Pointer(v))
|
|
}
|
|
|
|
// Custom: GetExtendedDataAddr gets `AVFrame.extended_data` address.
|
|
func (frame *AVFrame) GetExtendedDataAddr() ***uint8 {
|
|
return (***uint8)(unsafe.Pointer(&frame.extended_data))
|
|
}
|
|
|
|
// Custom: GetExtendedDataIdx gets `AVFrame.extended_data` index value.
|
|
func (frame *AVFrame) GetExtendedDataIdx(idx int) *uint8 {
|
|
if frame.extended_data == nil {
|
|
return nil
|
|
}
|
|
return PointerOffset((*uint8)(*frame.extended_data), idx)
|
|
}
|
|
|
|
// Custom: GetWidth gets `AVFrame.width` value.
|
|
func (frame *AVFrame) GetWidth() int32 {
|
|
return (int32)(frame.width)
|
|
}
|
|
|
|
// Custom: SetWidth sets `AVFrame.width` value.
|
|
func (frame *AVFrame) SetWidth(v int32) {
|
|
frame.width = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetWidthAddr gets `AVFrame.width` address.
|
|
func (frame *AVFrame) GetWidthAddr() *int32 {
|
|
return (*int32)(&frame.width)
|
|
}
|
|
|
|
// Custom: GetHeight gets `AVFrame.height` value.
|
|
func (frame *AVFrame) GetHeight() int32 {
|
|
return (int32)(frame.height)
|
|
}
|
|
|
|
// Custom: SetHeight sets `AVFrame.height` value.
|
|
func (frame *AVFrame) SetHeight(v int32) {
|
|
frame.height = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetHeightAddr gets `AVFrame.height` address.
|
|
func (frame *AVFrame) GetHeightAddr() *int32 {
|
|
return (*int32)(&frame.height)
|
|
}
|
|
|
|
// Custom: GetNbSamples gets `AVFrame.nb_samples` value.
|
|
func (frame *AVFrame) GetNbSamples() int32 {
|
|
return (int32)(frame.nb_samples)
|
|
}
|
|
|
|
// Custom: SetNbSamples sets `AVFrame.nb_samples` value.
|
|
func (frame *AVFrame) SetNbSamples(v int32) {
|
|
frame.nb_samples = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetNbSamplesAddr gets `AVFrame.nb_samples` address.
|
|
func (frame *AVFrame) GetNbSamplesAddr() *int32 {
|
|
return (*int32)(&frame.nb_samples)
|
|
}
|
|
|
|
// Custom: GetFormat gets `AVFrame.format` value.
|
|
func (frame *AVFrame) GetFormat() int32 {
|
|
return (int32)(frame.format)
|
|
}
|
|
|
|
// Custom: SetFormat sets `AVFrame.format` value.
|
|
func (frame *AVFrame) SetFormat(v int32) {
|
|
frame.format = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetFormatAddr gets `AVFrame.format` address.
|
|
func (frame *AVFrame) GetFormatAddr() *int32 {
|
|
return (*int32)(&frame.format)
|
|
}
|
|
|
|
// Custom: GetKeyFrame gets `AVFrame.key_frame` value.
|
|
func (frame *AVFrame) GetKeyFrame() int32 {
|
|
return (int32)(frame.key_frame)
|
|
}
|
|
|
|
// Custom: SetKeyFrame sets `AVFrame.key_frame` value.
|
|
func (frame *AVFrame) SetKeyFrame(v int32) {
|
|
frame.key_frame = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetKeyFrameAddr gets `AVFrame.key_frame` address.
|
|
func (frame *AVFrame) GetKeyFrameAddr() *int32 {
|
|
return (*int32)(&frame.key_frame)
|
|
}
|
|
|
|
// Custom: GetPictType gets `AVFrame.pict_type` value.
|
|
func (frame *AVFrame) GetPictType() AVPictureType {
|
|
return (AVPictureType)(frame.pict_type)
|
|
}
|
|
|
|
// Custom: SetPictType sets `AVFrame.pict_type` value.
|
|
func (frame *AVFrame) SetPictType(v AVPictureType) {
|
|
frame.pict_type = (C.enum_AVPictureType)(v)
|
|
}
|
|
|
|
// Custom: GetPictTypeAddr gets `AVFrame.pict_type` address.
|
|
func (frame *AVFrame) GetPictTypeAddr() *AVPictureType {
|
|
return (*AVPictureType)(unsafe.Pointer(&frame.pict_type))
|
|
}
|
|
|
|
// Custom: GetSampleAspectRatio gets `AVFrame.sample_aspect_ratio` value.
|
|
func (frame *AVFrame) GetSampleAspectRatio() AVRational {
|
|
return (AVRational)(frame.sample_aspect_ratio)
|
|
}
|
|
|
|
// Custom: SetSampleAspectRatio sets `AVFrame.sample_aspect_ratio` value.
|
|
func (frame *AVFrame) SetSampleAspectRatio(v AVRational) {
|
|
frame.sample_aspect_ratio = (C.struct_AVRational)(v)
|
|
}
|
|
|
|
// Custom: GetSampleAspectRatioAddr gets `AVFrame.sample_aspect_ratio` address.
|
|
func (frame *AVFrame) GetSampleAspectRatioAddr() *AVRational {
|
|
return (*AVRational)(&frame.sample_aspect_ratio)
|
|
}
|
|
|
|
// Custom: GetPts gets `AVFrame.pts` value.
|
|
func (frame *AVFrame) GetPts() int64 {
|
|
return (int64)(frame.pts)
|
|
}
|
|
|
|
// Custom: SetPts sets `AVFrame.pts` value.
|
|
func (frame *AVFrame) SetPts(v int64) {
|
|
frame.pts = (C.int64_t)(v)
|
|
}
|
|
|
|
// Custom: GetPtsAddr gets `AVFrame.pts` address.
|
|
func (frame *AVFrame) GetPtsAddr() *int64 {
|
|
return (*int64)(&frame.pts)
|
|
}
|
|
|
|
// Custom: GetPktPts gets `AVFrame.pkt_pts` value.
|
|
func (frame *AVFrame) GetPktPts() int64 {
|
|
return (int64)(frame.pkt_pts)
|
|
}
|
|
|
|
// Custom: SetPktPts sets `AVFrame.pkt_pts` value.
|
|
func (frame *AVFrame) SetPktPts(v int64) {
|
|
frame.pkt_pts = (C.int64_t)(v)
|
|
}
|
|
|
|
// Custom: GetPktPtsAddr gets `AVFrame.pkt_pts` address.
|
|
func (frame *AVFrame) GetPktPtsAddr() *int64 {
|
|
return (*int64)(&frame.pkt_pts)
|
|
}
|
|
|
|
// Custom: GetPktDts gets `AVFrame.pkt_dts` value.
|
|
func (frame *AVFrame) GetPktDts() int64 {
|
|
return (int64)(frame.pkt_dts)
|
|
}
|
|
|
|
// Custom: SetPktDts sets `AVFrame.pkt_dts` value.
|
|
func (frame *AVFrame) SetPktDts(v int64) {
|
|
frame.pkt_dts = (C.int64_t)(v)
|
|
}
|
|
|
|
// Custom: GetPktDtsAddr gets `AVFrame.pkt_dts` address.
|
|
func (frame *AVFrame) GetPktDtsAddr() *int64 {
|
|
return (*int64)(&frame.pkt_dts)
|
|
}
|
|
|
|
// Custom: GetCodedPictureNumber gets `AVFrame.coded_picture_number` value.
|
|
func (frame *AVFrame) GetCodedPictureNumber() int32 {
|
|
return (int32)(frame.coded_picture_number)
|
|
}
|
|
|
|
// Custom: SetCodedPictureNumber sets `AVFrame.coded_picture_number` value.
|
|
func (frame *AVFrame) SetCodedPictureNumber(v int32) {
|
|
frame.coded_picture_number = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetCodedPictureNumberAddr gets `AVFrame.coded_picture_number` address.
|
|
func (frame *AVFrame) GetCodedPictureNumberAddr() *int32 {
|
|
return (*int32)(&frame.coded_picture_number)
|
|
}
|
|
|
|
// Custom: GetDisplayPictureNumber gets `AVFrame.display_picture_number` value.
|
|
func (frame *AVFrame) GetDisplayPictureNumber() int32 {
|
|
return (int32)(frame.display_picture_number)
|
|
}
|
|
|
|
// Custom: SetDisplayPictureNumber sets `AVFrame.display_picture_number` value.
|
|
func (frame *AVFrame) SetDisplayPictureNumber(v int32) {
|
|
frame.display_picture_number = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetDisplayPictureNumberAddr gets `AVFrame.display_picture_number` address.
|
|
func (frame *AVFrame) GetDisplayPictureNumberAddr() *int32 {
|
|
return (*int32)(&frame.display_picture_number)
|
|
}
|
|
|
|
// Custom: GetQuality gets `AVFrame.quality` value.
|
|
func (frame *AVFrame) GetQuality() int32 {
|
|
return (int32)(frame.quality)
|
|
}
|
|
|
|
// Custom: SetQuality sets `AVFrame.quality` value.
|
|
func (frame *AVFrame) SetQuality(v int32) {
|
|
frame.quality = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetQualityAddr gets `AVFrame.quality` address.
|
|
func (frame *AVFrame) GetQualityAddr() *int32 {
|
|
return (*int32)(&frame.quality)
|
|
}
|
|
|
|
// Custom: GetIdxError gets `AVFrame.error` index value.
|
|
func (frame *AVFrame) GetErrorIdx(idx int) uint64 {
|
|
return (uint64)(frame.error[idx])
|
|
}
|
|
|
|
// Custom: SetIdxError sets `AVFrame.error` index value.
|
|
func (frame *AVFrame) SetErrorIdx(idx int, v uint64) {
|
|
frame.error[idx] = (C.uint64_t)(v)
|
|
}
|
|
|
|
// Custom: GetErrorIdxAddr gets `AVFrame.error` index address.
|
|
func (frame *AVFrame) GetErrorIdxAddr(idx int) *uint64 {
|
|
return (*uint64)(&frame.error[idx])
|
|
}
|
|
|
|
// Custom: GetError gets `AVFrame.error` value.
|
|
func (frame *AVFrame) GetError() []uint64 {
|
|
return unsafe.Slice((*uint64)(&frame.error[0]), AV_NUM_DATA_POINTERS)
|
|
}
|
|
|
|
// Custom: GetErrorAddr gets `AVFrame.error` address.
|
|
func (frame *AVFrame) GetErrorAddr() **uint64 {
|
|
return (**uint64)(unsafe.Pointer(&frame.error))
|
|
}
|
|
|
|
// Custom: GetRepeatPict gets `AVFrame.repeat_pict` value.
|
|
func (frame *AVFrame) GetRepeatPict() int32 {
|
|
return (int32)(frame.repeat_pict)
|
|
}
|
|
|
|
// Custom: SetRepeatPict sets `AVFrame.repeat_pict` value.
|
|
func (frame *AVFrame) SetRepeatPict(v int32) {
|
|
frame.repeat_pict = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetRepeatPictAddr gets `AVFrame.repeat_pict` address.
|
|
func (frame *AVFrame) GetRepeatPictAddr() *int32 {
|
|
return (*int32)(&frame.repeat_pict)
|
|
}
|
|
|
|
// Custom: GetInterlacedFrame gets `AVFrame.interlaced_frame` value.
|
|
func (frame *AVFrame) GetInterlacedFrame() int32 {
|
|
return (int32)(frame.interlaced_frame)
|
|
}
|
|
|
|
// Custom: SetInterlacedFrame sets `AVFrame.interlaced_frame` value.
|
|
func (frame *AVFrame) SetInterlacedFrame(v int32) {
|
|
frame.interlaced_frame = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetInterlacedFrameAddr gets `AVFrame.interlaced_frame` address.
|
|
func (frame *AVFrame) GetInterlacedFrameAddr() *int32 {
|
|
return (*int32)(&frame.interlaced_frame)
|
|
}
|
|
|
|
// Custom: GetTopFieldFirst gets `AVFrame.top_field_first` value.
|
|
func (frame *AVFrame) GetTopFieldFirst() int32 {
|
|
return (int32)(frame.top_field_first)
|
|
}
|
|
|
|
// Custom: SetTopFieldFirst sets `AVFrame.top_field_first` value.
|
|
func (frame *AVFrame) SetTopFieldFirst(v int32) {
|
|
frame.top_field_first = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetTopFieldFirstAddr gets `AVFrame.top_field_first` address.
|
|
func (frame *AVFrame) GetTopFieldFirstAddr() *int32 {
|
|
return (*int32)(&frame.top_field_first)
|
|
}
|
|
|
|
// Custom: GetPaletteHasChanged gets `AVFrame.palette_has_changed` value.
|
|
func (frame *AVFrame) GetPaletteHasChanged() int32 {
|
|
return (int32)(frame.palette_has_changed)
|
|
}
|
|
|
|
// Custom: SetPaletteHasChanged sets `AVFrame.palette_has_changed` value.
|
|
func (frame *AVFrame) SetPaletteHasChanged(v int32) {
|
|
frame.palette_has_changed = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetPaletteHasChangedAddr gets `AVFrame.palette_has_changed` address.
|
|
func (frame *AVFrame) GetPaletteHasChangedAddr() *int32 {
|
|
return (*int32)(&frame.palette_has_changed)
|
|
}
|
|
|
|
// Custom: GetReorderedOpaque gets `AVFrame.reordered_opaque` value.
|
|
func (frame *AVFrame) GetReorderedOpaque() int64 {
|
|
return (int64)(frame.reordered_opaque)
|
|
}
|
|
|
|
// Custom: SetReorderedOpaque sets `AVFrame.reordered_opaque` value.
|
|
func (frame *AVFrame) SetReorderedOpaque(v int64) {
|
|
frame.reordered_opaque = (C.int64_t)(v)
|
|
}
|
|
|
|
// Custom: GetReorderedOpaqueAddr gets `AVFrame.reordered_opaque` address.
|
|
func (frame *AVFrame) GetReorderedOpaqueAddr() *int64 {
|
|
return (*int64)(&frame.reordered_opaque)
|
|
}
|
|
|
|
// Custom: GetSampleRate gets `AVFrame.sample_rate` value.
|
|
func (frame *AVFrame) GetSampleRate() int32 {
|
|
return (int32)(frame.sample_rate)
|
|
}
|
|
|
|
// Custom: SetSampleRate sets `AVFrame.sample_rate` value.
|
|
func (frame *AVFrame) SetSampleRate(v int32) {
|
|
frame.sample_rate = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetSampleRateAddr gets `AVFrame.sample_rate` address.
|
|
func (frame *AVFrame) GetSampleRateAddr() *int32 {
|
|
return (*int32)(&frame.sample_rate)
|
|
}
|
|
|
|
// Custom: GetChannelLayout gets `AVFrame.channel_layout` value.
|
|
func (frame *AVFrame) GetChannelLayout() uint64 {
|
|
return (uint64)(frame.channel_layout)
|
|
}
|
|
|
|
// Custom: SetChannelLayout sets `AVFrame.channel_layout` value.
|
|
func (frame *AVFrame) SetChannelLayout(v uint64) {
|
|
frame.channel_layout = (C.uint64_t)(v)
|
|
}
|
|
|
|
// Custom: GetChannelLayoutAddr gets `AVFrame.channel_layout` address.
|
|
func (frame *AVFrame) GetChannelLayoutAddr() *uint64 {
|
|
return (*uint64)(&frame.channel_layout)
|
|
}
|
|
|
|
// Custom: GetBufIdx gets `AVFrame.buf` value.
|
|
func (frame *AVFrame) GetBuf() []*AVBufferRef {
|
|
return unsafe.Slice((**AVBufferRef)(unsafe.Pointer(&frame.buf[0])), AV_NUM_DATA_POINTERS)
|
|
}
|
|
|
|
// Custom: GetBufIdx gets `AVFrame.buf` value.
|
|
func (frame *AVFrame) GetBufIdx(idx int) *AVBufferRef {
|
|
return (*AVBufferRef)(frame.buf[idx])
|
|
}
|
|
|
|
// Custom: SetBufIdx sets `AVFrame.buf` value.
|
|
func (frame *AVFrame) SetBufIdx(idx int, v *AVBufferRef) {
|
|
if idx > AV_NUM_DATA_POINTERS {
|
|
return
|
|
}
|
|
frame.buf[idx] = (*C.struct_AVBufferRef)(v)
|
|
}
|
|
|
|
// Custom: GetBufIdxAddr gets `AVFrame.buf` address.
|
|
func (frame *AVFrame) GetBufIdxAddr(idx int) **AVBufferRef {
|
|
if idx > AV_NUM_DATA_POINTERS {
|
|
return nil
|
|
}
|
|
return (**AVBufferRef)(unsafe.Pointer(&frame.buf[idx]))
|
|
}
|
|
|
|
// Custom: GetBufAddr gets `AVFrame.buf` address.
|
|
func (frame *AVFrame) GetBufAddr() ***AVBufferRef {
|
|
return (***AVBufferRef)(unsafe.Pointer(&frame.buf))
|
|
}
|
|
|
|
// Custom: GetExtendedBuf gets `AVFrame.extended_buf` value.
|
|
func (frame *AVFrame) GetExtendedBuf() []*AVBufferRef {
|
|
if frame.extended_buf == nil {
|
|
return nil
|
|
}
|
|
return unsafe.Slice((**AVBufferRef)(unsafe.Pointer(frame.extended_buf)),
|
|
frame.nb_extended_buf)
|
|
}
|
|
|
|
// Custom: SetExtendedBuf sets `AVFrame.extended_buf` value.
|
|
func (frame *AVFrame) SetExtendedBuf(v **AVBufferRef) {
|
|
frame.extended_buf = (**C.struct_AVBufferRef)(unsafe.Pointer(v))
|
|
}
|
|
|
|
// Custom: GetExtendedBufAddr gets `AVFrame.extended_buf` address.
|
|
func (frame *AVFrame) GetExtendedBufAddr() ***AVBufferRef {
|
|
return (***AVBufferRef)(unsafe.Pointer(&frame.extended_buf))
|
|
}
|
|
|
|
// Custom: GetExtendedBufIdx gets `AVFrame.extended_buf` index value.
|
|
func (frame *AVFrame) GetExtendedBufIdx(idx int) *AVBufferRef {
|
|
if idx >= int(frame.nb_extended_buf) {
|
|
return nil
|
|
}
|
|
return PointerOffset((*AVBufferRef)(*frame.extended_buf), idx)
|
|
}
|
|
|
|
// Custom: GetNbExtendedBuf gets `AVFrame.nb_extended_buf` value.
|
|
func (frame *AVFrame) GetNbExtendedBuf() int32 {
|
|
return (int32)(frame.nb_extended_buf)
|
|
}
|
|
|
|
// Custom: SetNbExtendedBuf sets `AVFrame.nb_extended_buf` value.
|
|
func (frame *AVFrame) SetNbExtendedBuf(v int32) {
|
|
frame.nb_extended_buf = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetNbExtendedBufAddr gets `AVFrame.nb_extended_buf` address.
|
|
func (frame *AVFrame) GetNbExtendedBufAddr() *int32 {
|
|
return (*int32)(&frame.nb_extended_buf)
|
|
}
|
|
|
|
// Custom: GetSideData gets `AVFrame.side_data` value.
|
|
func (frame *AVFrame) GetSideData() []*AVFrameSideData {
|
|
if frame.side_data == nil {
|
|
return nil
|
|
}
|
|
return unsafe.Slice((**AVFrameSideData)(unsafe.Pointer(frame.side_data)), frame.nb_side_data)
|
|
}
|
|
|
|
// Custom: SetSideData sets `AVFrame.side_data` value.
|
|
func (frame *AVFrame) SetSideData(v **AVFrameSideData) {
|
|
frame.side_data = (**C.struct_AVFrameSideData)(unsafe.Pointer(v))
|
|
}
|
|
|
|
// Custom: GetSideDataAddr gets `AVFrame.side_data` address.
|
|
func (frame *AVFrame) GetSideDataAddr() ***AVFrameSideData {
|
|
return (***AVFrameSideData)(unsafe.Pointer(&frame.side_data))
|
|
}
|
|
|
|
// Custom: GetSideDataIdx gets `AVFrame.side_data` index value.
|
|
func (frame *AVFrame) GetSideDataIdx(idx int) *AVFrameSideData {
|
|
if idx >= int(frame.nb_side_data) {
|
|
return nil
|
|
}
|
|
return PointerOffset((*AVFrameSideData)(*frame.side_data), idx)
|
|
}
|
|
|
|
// Custom: GetNbSideData gets `AVFrame.nb_side_data` value.
|
|
func (frame *AVFrame) GetNbSideData() int32 {
|
|
return (int32)(frame.nb_side_data)
|
|
}
|
|
|
|
// Custom: SetNbSideData sets `AVFrame.nb_side_data` value.
|
|
func (frame *AVFrame) SetNbSideData(v int32) {
|
|
frame.nb_side_data = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetNbSideDataAddr gets `AVFrame.nb_side_data` address.
|
|
func (frame *AVFrame) GetNbSideDataAddr() *int32 {
|
|
return (*int32)(&frame.nb_side_data)
|
|
}
|
|
|
|
const (
|
|
AV_FRAME_FLAG_CORRUPT = int32(C.AV_FRAME_FLAG_CORRUPT)
|
|
AV_FRAME_FLAG_DISCARD = int32(C.AV_FRAME_FLAG_DISCARD)
|
|
)
|
|
|
|
// Custom: GetFlags gets `AVFrame.flags` value.
|
|
func (frame *AVFrame) GetFlags() int32 {
|
|
return (int32)(frame.flags)
|
|
}
|
|
|
|
// Custom: SetFlags sets `AVFrame.flags` value.
|
|
func (frame *AVFrame) SetFlags(v int32) {
|
|
frame.flags = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetFlagsAddr gets `AVFrame.flags` address.
|
|
func (frame *AVFrame) GetFlagsAddr() *int32 {
|
|
return (*int32)(&frame.flags)
|
|
}
|
|
|
|
// Custom: GetColorRange gets `AVFrame.color_range` value.
|
|
func (frame *AVFrame) GetColorRange() AVColorRange {
|
|
return (AVColorRange)(frame.color_range)
|
|
}
|
|
|
|
// Custom: SetColorRange sets `AVFrame.color_range` value.
|
|
func (frame *AVFrame) SetColorRange(v AVColorRange) {
|
|
frame.color_range = (C.enum_AVColorRange)(v)
|
|
}
|
|
|
|
// Custom: GetColorRangeAddr gets `AVFrame.color_range` address.
|
|
func (frame *AVFrame) GetColorRangeAddr() *AVColorRange {
|
|
return (*AVColorRange)(unsafe.Pointer(&frame.color_range))
|
|
}
|
|
|
|
// Custom: GetColorPrimaries gets `AVFrame.color_primaries` value.
|
|
func (frame *AVFrame) GetColorPrimaries() AVColorPrimaries {
|
|
return (AVColorPrimaries)(frame.color_primaries)
|
|
}
|
|
|
|
// Custom: SetColorPrimaries sets `AVFrame.color_primaries` value.
|
|
func (frame *AVFrame) SetColorPrimaries(v AVColorPrimaries) {
|
|
frame.color_primaries = (C.enum_AVColorPrimaries)(v)
|
|
}
|
|
|
|
// Custom: GetColorPrimariesAddr gets `AVFrame.color_primaries` address.
|
|
func (frame *AVFrame) GetColorPrimariesAddr() *AVColorPrimaries {
|
|
return (*AVColorPrimaries)(unsafe.Pointer(&frame.color_primaries))
|
|
}
|
|
|
|
// Custom: GetColorTrc gets `AVFrame.color_trc` value.
|
|
func (frame *AVFrame) GetColorTrc() AVColorTransferCharacteristic {
|
|
return (AVColorTransferCharacteristic)(frame.color_trc)
|
|
}
|
|
|
|
// Custom: SetColorTrc sets `AVFrame.color_trc` value.
|
|
func (frame *AVFrame) SetColorTrc(v AVColorTransferCharacteristic) {
|
|
frame.color_trc = (C.enum_AVColorTransferCharacteristic)(v)
|
|
}
|
|
|
|
// Custom: GetColorTrcAddr gets `AVFrame.color_trc` address.
|
|
func (frame *AVFrame) GetColorTrcAddr() *AVColorTransferCharacteristic {
|
|
return (*AVColorTransferCharacteristic)(unsafe.Pointer(&frame.color_trc))
|
|
}
|
|
|
|
// Custom: GetColorspace gets `AVFrame.colorspace` value.
|
|
func (frame *AVFrame) GetColorspace() AVColorSpace {
|
|
return (AVColorSpace)(frame.colorspace)
|
|
}
|
|
|
|
// Custom: SetColorspace sets `AVFrame.colorspace` value.
|
|
func (frame *AVFrame) SetColorspace(v AVColorSpace) {
|
|
frame.colorspace = (C.enum_AVColorSpace)(v)
|
|
}
|
|
|
|
// Custom: GetColorspaceAddr gets `AVFrame.colorspace` address.
|
|
func (frame *AVFrame) GetColorspaceAddr() *AVColorSpace {
|
|
return (*AVColorSpace)(unsafe.Pointer(&frame.colorspace))
|
|
}
|
|
|
|
// Custom: GetChromaLocation gets `AVFrame.chroma_location` value.
|
|
func (frame *AVFrame) GetChromaLocation() AVChromaLocation {
|
|
return (AVChromaLocation)(frame.chroma_location)
|
|
}
|
|
|
|
// Custom: SetChromaLocation sets `AVFrame.chroma_location` value.
|
|
func (frame *AVFrame) SetChromaLocation(v AVChromaLocation) {
|
|
frame.chroma_location = (C.enum_AVChromaLocation)(v)
|
|
}
|
|
|
|
// Custom: GetChromaLocationAddr gets `AVFrame.chroma_location` address.
|
|
func (frame *AVFrame) GetChromaLocationAddr() *AVChromaLocation {
|
|
return (*AVChromaLocation)(unsafe.Pointer(&frame.chroma_location))
|
|
}
|
|
|
|
// Custom: GetBestEffortTimestamp gets `AVFrame.best_effort_timestamp` value.
|
|
func (frame *AVFrame) GetBestEffortTimestamp() int64 {
|
|
return (int64)(frame.best_effort_timestamp)
|
|
}
|
|
|
|
// Custom: SetBestEffortTimestamp sets `AVFrame.best_effort_timestamp` value.
|
|
func (frame *AVFrame) SetBestEffortTimestamp(v int64) {
|
|
frame.best_effort_timestamp = (C.int64_t)(v)
|
|
}
|
|
|
|
// Custom: GetBestEffortTimestampAddr gets `AVFrame.best_effort_timestamp` address.
|
|
func (frame *AVFrame) GetBestEffortTimestampAddr() *int64 {
|
|
return (*int64)(&frame.best_effort_timestamp)
|
|
}
|
|
|
|
// Custom: GetPktPos gets `AVFrame.pkt_pos` value.
|
|
func (frame *AVFrame) GetPktPos() int64 {
|
|
return (int64)(frame.pkt_pos)
|
|
}
|
|
|
|
// Custom: SetPktPos sets `AVFrame.pkt_pos` value.
|
|
func (frame *AVFrame) SetPktPos(v int64) {
|
|
frame.pkt_pos = (C.int64_t)(v)
|
|
}
|
|
|
|
// Custom: GetPktPosAddr gets `AVFrame.pkt_pos` address.
|
|
func (frame *AVFrame) GetPktPosAddr() *int64 {
|
|
return (*int64)(&frame.pkt_pos)
|
|
}
|
|
|
|
// Custom: GetPktDuration gets `AVFrame.pkt_duration` value.
|
|
func (frame *AVFrame) GetPktDuration() int64 {
|
|
return (int64)(frame.pkt_duration)
|
|
}
|
|
|
|
// Custom: SetPktDuration sets `AVFrame.pkt_duration` value.
|
|
func (frame *AVFrame) SetPktDuration(v int64) {
|
|
frame.pkt_duration = (C.int64_t)(v)
|
|
}
|
|
|
|
// Custom: GetPktDurationAddr gets `AVFrame.pkt_duration` address.
|
|
func (frame *AVFrame) GetPktDurationAddr() *int64 {
|
|
return (*int64)(&frame.pkt_duration)
|
|
}
|
|
|
|
// Custom: GetMetadata gets `AVFrame.metadata` value.
|
|
func (frame *AVFrame) GetMetadata() *AVDictionary {
|
|
return (*AVDictionary)(frame.metadata)
|
|
}
|
|
|
|
// Custom: SetMetadata sets `AVFrame.metadata` value.
|
|
func (frame *AVFrame) SetMetadata(v *AVDictionary) {
|
|
frame.metadata = (*C.struct_AVDictionary)(v)
|
|
}
|
|
|
|
// Custom: GetMetadataAddr gets `AVFrame.metadata` address.
|
|
func (frame *AVFrame) GetMetadataAddr() **AVDictionary {
|
|
return (**AVDictionary)(unsafe.Pointer(&frame.metadata))
|
|
}
|
|
|
|
// Custom: GetDecodeErrorFlags gets `AVFrame.decode_error_flags` value.
|
|
func (frame *AVFrame) GetDecodeErrorFlags() int32 {
|
|
return (int32)(frame.decode_error_flags)
|
|
}
|
|
|
|
// Custom: SetDecodeErrorFlags sets `AVFrame.decode_error_flags` value.
|
|
func (frame *AVFrame) SetDecodeErrorFlags(v int32) {
|
|
frame.decode_error_flags = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetDecodeErrorFlagsAddr gets `AVFrame.decode_error_flags` address.
|
|
func (frame *AVFrame) GetDecodeErrorFlagsAddr() *int32 {
|
|
return (*int32)(&frame.decode_error_flags)
|
|
}
|
|
|
|
const (
|
|
FF_DECODE_ERROR_INVALID_BITSTREAM = int32(C.FF_DECODE_ERROR_INVALID_BITSTREAM)
|
|
FF_DECODE_ERROR_MISSING_REFERENCE = int32(C.FF_DECODE_ERROR_MISSING_REFERENCE)
|
|
FF_DECODE_ERROR_CONCEALMENT_ACTIVE = int32(C.FF_DECODE_ERROR_CONCEALMENT_ACTIVE)
|
|
FF_DECODE_ERROR_DECODE_SLICES = int32(C.FF_DECODE_ERROR_DECODE_SLICES)
|
|
)
|
|
|
|
// Custom: GetChannels gets `AVFrame.channels` value.
|
|
func (frame *AVFrame) GetChannels() int32 {
|
|
return (int32)(frame.channels)
|
|
}
|
|
|
|
// Custom: SetChannels sets `AVFrame.channels` value.
|
|
func (frame *AVFrame) SetChannels(v int32) {
|
|
frame.channels = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetChannelsAddr gets `AVFrame.channels` address.
|
|
func (frame *AVFrame) GetChannelsAddr() *int32 {
|
|
return (*int32)(&frame.channels)
|
|
}
|
|
|
|
// Custom: GetPktSize gets `AVFrame.pkt_size` value.
|
|
func (frame *AVFrame) GetPktSize() int32 {
|
|
return (int32)(frame.pkt_size)
|
|
}
|
|
|
|
// Custom: SetPktSize sets `AVFrame.pkt_size` value.
|
|
func (frame *AVFrame) SetPktSize(v int32) {
|
|
frame.pkt_size = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetPktSizeAddr gets `AVFrame.pkt_size` address.
|
|
func (frame *AVFrame) GetPktSizeAddr() *int32 {
|
|
return (*int32)(&frame.pkt_size)
|
|
}
|
|
|
|
// Custom: GetQscaleTable gets `AVFrame.qscale_table` value.
|
|
func (frame *AVFrame) GetQscaleTable() *int8 {
|
|
return (*int8)(frame.qscale_table)
|
|
}
|
|
|
|
// Custom: SetQscaleTable sets `AVFrame.qscale_table` value.
|
|
func (frame *AVFrame) SetQscaleTable(v *int8) {
|
|
frame.qscale_table = (*C.int8_t)(v)
|
|
}
|
|
|
|
// Custom: GetQscaleTableAddr gets `AVFrame.qscale_table` address.
|
|
func (frame *AVFrame) GetQscaleTableAddr() **int8 {
|
|
return (**int8)(unsafe.Pointer(&frame.qscale_table))
|
|
}
|
|
|
|
// Custom: GetQstride gets `AVFrame.qstride` value.
|
|
func (frame *AVFrame) GetQstride() int32 {
|
|
return (int32)(frame.qstride)
|
|
}
|
|
|
|
// Custom: SetQstride sets `AVFrame.qstride` value.
|
|
func (frame *AVFrame) SetQstride(v int32) {
|
|
frame.qstride = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetQstrideAddr gets `AVFrame.qstride` address.
|
|
func (frame *AVFrame) GetQstrideAddr() *int32 {
|
|
return (*int32)(&frame.qstride)
|
|
}
|
|
|
|
// Custom: GetQscaleType gets `AVFrame.qscale_type` value.
|
|
func (frame *AVFrame) GetQscaleType() int32 {
|
|
return (int32)(frame.qscale_type)
|
|
}
|
|
|
|
// Custom: SetQscaleType sets `AVFrame.qscale_type` value.
|
|
func (frame *AVFrame) SetQscaleType(v int32) {
|
|
frame.qscale_type = (C.int)(v)
|
|
}
|
|
|
|
// Custom: GetQscaleTypeAddr gets `AVFrame.qscale_type` address.
|
|
func (frame *AVFrame) GetQscaleTypeAddr() *int32 {
|
|
return (*int32)(&frame.qscale_type)
|
|
}
|
|
|
|
// Custom: GetQpTableBuf gets `AVFrame.qp_table_buf` value.
|
|
func (frame *AVFrame) GetQpTableBuf() *AVBufferRef {
|
|
return (*AVBufferRef)(frame.qp_table_buf)
|
|
}
|
|
|
|
// Custom: SetQpTableBuf sets `AVFrame.qp_table_buf` value.
|
|
func (frame *AVFrame) SetQpTableBuf(v *AVBufferRef) {
|
|
frame.qp_table_buf = (*C.struct_AVBufferRef)(v)
|
|
}
|
|
|
|
// Custom: GetQpTableBufAddr gets `AVFrame.qp_table_buf` address.
|
|
func (frame *AVFrame) GetQpTableBufAddr() **AVBufferRef {
|
|
return (**AVBufferRef)(unsafe.Pointer(&frame.qp_table_buf))
|
|
}
|
|
|
|
// Custom: GetHwFramesCtx gets `AVFrame.hw_frames_ctx` value.
|
|
func (frame *AVFrame) GetHwFramesCtx() *AVBufferRef {
|
|
return (*AVBufferRef)(frame.hw_frames_ctx)
|
|
}
|
|
|
|
// Custom: SetHwFramesCtx sets `AVFrame.hw_frames_ctx` value.
|
|
func (frame *AVFrame) SetHwFramesCtx(v *AVBufferRef) {
|
|
frame.hw_frames_ctx = (*C.struct_AVBufferRef)(v)
|
|
}
|
|
|
|
// Custom: GetHwFramesCtxAddr gets `AVFrame.hw_frames_ctx` address.
|
|
func (frame *AVFrame) GetHwFramesCtxAddr() **AVBufferRef {
|
|
return (**AVBufferRef)(unsafe.Pointer(&frame.hw_frames_ctx))
|
|
}
|
|
|
|
// Custom: GetOpaqueRef gets `AVFrame.opaque_ref` value.
|
|
func (frame *AVFrame) GetOpaqueRef() *AVBufferRef {
|
|
return (*AVBufferRef)(frame.opaque_ref)
|
|
}
|
|
|
|
// Custom: SetOpaqueRef sets `AVFrame.opaque_ref` value.
|
|
func (frame *AVFrame) SetOpaqueRef(v *AVBufferRef) {
|
|
frame.opaque_ref = (*C.AVBufferRef)(v)
|
|
}
|
|
|
|
// Custom: GetOpaqueRefAddr gets `AVFrame.opaque_ref` address.
|
|
func (frame *AVFrame) GetOpaqueRefAddr() **AVBufferRef {
|
|
return (**AVBufferRef)(unsafe.Pointer(&frame.opaque_ref))
|
|
}
|
|
|
|
// Custom: GetCropTop gets `AVFrame.crop_top` value.
|
|
func (frame *AVFrame) GetCropTop() uint {
|
|
return (uint)(frame.crop_top)
|
|
}
|
|
|
|
// Custom: SetCropTop sets `AVFrame.crop_top` value.
|
|
func (frame *AVFrame) SetCropTop(v uint) {
|
|
frame.crop_top = (C.size_t)(v)
|
|
}
|
|
|
|
// Custom: GetCropTopAddr gets `AVFrame.crop_top` address.
|
|
func (frame *AVFrame) GetCropTopAddr() *uint {
|
|
return (*uint)(unsafe.Pointer(&frame.crop_top))
|
|
}
|
|
|
|
// Custom: GetCropBottom gets `AVFrame.crop_bottom` value.
|
|
func (frame *AVFrame) GetCropBottom() uint {
|
|
return (uint)(frame.crop_bottom)
|
|
}
|
|
|
|
// Custom: SetCropBottom sets `AVFrame.crop_bottom` value.
|
|
func (frame *AVFrame) SetCropBottom(v uint) {
|
|
frame.crop_bottom = (C.size_t)(v)
|
|
}
|
|
|
|
// Custom: GetCropBottomAddr gets `AVFrame.crop_bottom` address.
|
|
func (frame *AVFrame) GetCropBottomAddr() *uint {
|
|
return (*uint)(unsafe.Pointer(&frame.crop_bottom))
|
|
}
|
|
|
|
// Custom: GetCropLeft gets `AVFrame.crop_left` value.
|
|
func (frame *AVFrame) GetCropLeft() uint {
|
|
return (uint)(frame.crop_left)
|
|
}
|
|
|
|
// Custom: SetCropLeft sets `AVFrame.crop_left` value.
|
|
func (frame *AVFrame) SetCropLeft(v uint) {
|
|
frame.crop_left = (C.size_t)(v)
|
|
}
|
|
|
|
// Custom: GetCropLeftAddr gets `AVFrame.crop_left` address.
|
|
func (frame *AVFrame) GetCropLeftAddr() *uint {
|
|
return (*uint)(unsafe.Pointer(&frame.crop_left))
|
|
}
|
|
|
|
// Custom: GetCropRight gets `AVFrame.crop_right` value.
|
|
func (frame *AVFrame) GetCropRight() uint {
|
|
return (uint)(frame.crop_right)
|
|
}
|
|
|
|
// Custom: SetCropRight sets `AVFrame.crop_right` value.
|
|
func (frame *AVFrame) SetCropRight(v uint) {
|
|
frame.crop_right = (C.size_t)(v)
|
|
}
|
|
|
|
// Custom: GetCropRightAddr gets `AVFrame.crop_right` address.
|
|
func (frame *AVFrame) GetCropRightAddr() *uint {
|
|
return (*uint)(unsafe.Pointer(&frame.crop_right))
|
|
}
|
|
|
|
// Custom: GetPrivateRef gets `AVFrame.private_ref` value.
|
|
func (frame *AVFrame) GetPrivateRef() *AVBufferRef {
|
|
return (*AVBufferRef)(frame.private_ref)
|
|
}
|
|
|
|
// Custom: SetPrivateRef sets `AVFrame.private_ref` value.
|
|
func (frame *AVFrame) SetPrivateRef(v *AVBufferRef) {
|
|
frame.private_ref = (*C.struct_AVBufferRef)(v)
|
|
}
|
|
|
|
// Custom: GetPrivateRefAddr gets `AVFrame.private_ref` address.
|
|
func (frame *AVFrame) GetPrivateRefAddr() **AVBufferRef {
|
|
return (**AVBufferRef)(unsafe.Pointer(&frame.private_ref))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameGetBestEffortTimestamp(frame *AVFrame) int64 {
|
|
return (int64)(C.av_frame_get_best_effort_timestamp((*C.struct_AVFrame)(frame)))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameSetBestEffortTimestamp(frame *AVFrame, val int64) {
|
|
C.av_frame_set_best_effort_timestamp((*C.struct_AVFrame)(frame), (C.int64_t)(val))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameGetPktDuration(frame *AVFrame) int64 {
|
|
return (int64)(C.av_frame_get_pkt_duration((*C.struct_AVFrame)(frame)))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameSetPktDuration(frame *AVFrame, val int64) {
|
|
C.av_frame_set_pkt_duration((*C.struct_AVFrame)(frame), (C.int64_t)(val))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameGetPktPos(frame *AVFrame) int64 {
|
|
return (int64)(C.av_frame_get_pkt_pos((*C.struct_AVFrame)(frame)))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameSetPktPos(frame *AVFrame, val int64) {
|
|
C.av_frame_set_pkt_pos((*C.struct_AVFrame)(frame), (C.int64_t)(val))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameGetChannelLayout(frame *AVFrame) int64 {
|
|
return (int64)(C.av_frame_get_channel_layout((*C.struct_AVFrame)(frame)))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameSetChannelLayout(frame *AVFrame, val int64) {
|
|
C.av_frame_set_channel_layout((*C.struct_AVFrame)(frame), (C.int64_t)(val))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameGetChannels(frame *AVFrame) int32 {
|
|
return (int32)(C.av_frame_get_channels((*C.struct_AVFrame)(frame)))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameSetChannels(frame *AVFrame, val int32) {
|
|
C.av_frame_set_channels((*C.struct_AVFrame)(frame), (C.int)(val))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameGetSampleRate(frame *AVFrame) int32 {
|
|
return (int32)(C.av_frame_get_sample_rate((*C.struct_AVFrame)(frame)))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameSetSampleRate(frame *AVFrame, val int32) {
|
|
C.av_frame_set_sample_rate((*C.struct_AVFrame)(frame), (C.int)(val))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameGetMetadata(frame *AVFrame) *AVDictionary {
|
|
return (*AVDictionary)(C.av_frame_get_metadata((*C.struct_AVFrame)(frame)))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameSetMetadata(frame *AVFrame, val *AVDictionary) {
|
|
C.av_frame_set_metadata((*C.struct_AVFrame)(frame), (*C.struct_AVDictionary)(val))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameGetDecodeErrorFlags(frame *AVFrame) int32 {
|
|
return (int32)(C.av_frame_get_decode_error_flags((*C.struct_AVFrame)(frame)))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameSetDecodeErrorFlags(frame *AVFrame, val int32) {
|
|
C.av_frame_set_decode_error_flags((*C.struct_AVFrame)(frame), (C.int)(val))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameGetPktSize(frame *AVFrame) int32 {
|
|
return (int32)(C.av_frame_get_pkt_size((*C.struct_AVFrame)(frame)))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameSetPktSize(frame *AVFrame, val int32) {
|
|
C.av_frame_set_pkt_size((*C.struct_AVFrame)(frame), (C.int)(val))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameGetQpTable(frame *AVFrame, stride, _type *int32) *int8 {
|
|
return (*int8)(C.av_frame_get_qp_table((*C.struct_AVFrame)(frame),
|
|
(*C.int)(stride), (*C.int)(_type)))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameSetQpTable(frame *AVFrame, buf *AVBufferRef, stride, _type int32) int32 {
|
|
return (int32)(C.av_frame_set_qp_table((*C.struct_AVFrame)(frame),
|
|
(*C.struct_AVBufferRef)(buf), (C.int)(stride), (C.int)(_type)))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameGetColorspace(frame *AVFrame) AVColorSpace {
|
|
return (AVColorSpace)(C.av_frame_get_colorspace((*C.struct_AVFrame)(frame)))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameSetColorspace(frame *AVFrame, val AVColorSpace) {
|
|
C.av_frame_set_colorspace((*C.struct_AVFrame)(frame), (C.enum_AVColorSpace)(val))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameGetColorRange(frame *AVFrame) AVColorRange {
|
|
return (AVColorRange)(C.av_frame_get_color_range((*C.struct_AVFrame)(frame)))
|
|
}
|
|
|
|
// Deprecated: No use
|
|
func AvFrameSetColorRange(frame *AVFrame, val AVColorRange) {
|
|
C.av_frame_set_color_range((*C.struct_AVFrame)(frame), (C.enum_AVColorRange)(val))
|
|
}
|
|
|
|
// AvGetColorspaceName gets the name of a colorspace.
|
|
func AvGetColorspaceName(val AVColorSpace) string {
|
|
return C.GoString(C.av_get_colorspace_name((C.enum_AVColorSpace)(val)))
|
|
}
|
|
|
|
// AvFrameAlloc allocates an AVFrame and set its fields to default values.
|
|
// The resulting struct must be freed using AVFrameFree().
|
|
func AvFrameAlloc() *AVFrame {
|
|
return (*AVFrame)(C.av_frame_alloc())
|
|
}
|
|
|
|
// AvFrameFree frees the frame and any dynamically allocated objects in it,
|
|
// e.g. extended_data. If the frame is reference counted, it will be
|
|
// unreferenced first.
|
|
func AvFrameFree(frame **AVFrame) {
|
|
C.av_frame_free((**C.struct_AVFrame)(unsafe.Pointer(frame)))
|
|
}
|
|
|
|
// AvFrameRef sets up a new reference to the data described by the source frame.
|
|
func AvFrameRef(dst, src *AVFrame) int32 {
|
|
return (int32)(C.av_frame_ref((*C.struct_AVFrame)(dst), (*C.struct_AVFrame)(src)))
|
|
}
|
|
|
|
// AvFrameClone creates a new frame that references the same data as src.
|
|
func AvFrameClone(frame *AVFrame) *AVFrame {
|
|
return (*AVFrame)(C.av_frame_clone((*C.struct_AVFrame)(frame)))
|
|
}
|
|
|
|
// AvFrameUnref unreferences all the buffers referenced by frame and reset the frame fields.
|
|
func AvFrameUnref(frame *AVFrame) {
|
|
C.av_frame_unref((*C.struct_AVFrame)(frame))
|
|
}
|
|
|
|
// AvFrameMoveRef moves everything contained in src to dst and reset src.
|
|
func AvFrameMoveRef(dst, src *AVFrame) {
|
|
C.av_frame_move_ref((*C.struct_AVFrame)(dst), (*C.struct_AVFrame)(src))
|
|
}
|
|
|
|
// AvFrameGetBuffer allocates new buffer(s) for audio or video data.
|
|
func AvFrameGetBuffer(frame *AVFrame, align int32) int32 {
|
|
return (int32)(C.av_frame_get_buffer((*C.struct_AVFrame)(frame), (C.int)(align)))
|
|
}
|
|
|
|
// AvFrameIsWritable checks if the frame data is writable.
|
|
func AvFrameIsWritable(frame *AVFrame) int32 {
|
|
return (int32)(C.av_frame_is_writable((*C.struct_AVFrame)(frame)))
|
|
}
|
|
|
|
// AvFrameMakeWritable ensures that the frame data is writable, avoiding data copy if possible.
|
|
func AvFrameMakeWritable(frame *AVFrame) int32 {
|
|
return (int32)(C.av_frame_make_writable((*C.struct_AVFrame)(frame)))
|
|
}
|
|
|
|
// AvFrameCopy copies the frame data from src to dst.
|
|
func AvFrameCopy(dst, src *AVFrame) int32 {
|
|
return (int32)(C.av_frame_copy((*C.struct_AVFrame)(dst), (*C.struct_AVFrame)(src)))
|
|
}
|
|
|
|
// AvFrameCopyProps copies only "metadata" fields from src to dst.
|
|
func AvFrameCopyProps(dst, src *AVFrame) int32 {
|
|
return (int32)(C.av_frame_copy_props((*C.struct_AVFrame)(dst), (*C.struct_AVFrame)(src)))
|
|
}
|
|
|
|
// AvFrameGetPlaneBuffer gets the buffer reference a given data plane is stored in.
|
|
func AvFrameGetPlaneBuffer(frame *AVFrame, plane int32) *AVBufferRef {
|
|
return (*AVBufferRef)(C.av_frame_get_plane_buffer((*C.struct_AVFrame)(frame), (C.int)(plane)))
|
|
}
|
|
|
|
// AvFrameNewSideData adds a new side data to a frame.
|
|
func AvFrameNewSideData(frame *AVFrame, _type AVFrameSideDataType, size int32) *AVFrameSideData {
|
|
return (*AVFrameSideData)(C.av_frame_new_side_data((*C.struct_AVFrame)(frame),
|
|
(C.enum_AVFrameSideDataType)(_type), (C.int)(size)))
|
|
}
|
|
|
|
// AvFrameNewSideDataFromBuf adds a new side data to a frame from an existing AVBufferRef.
|
|
func AvFrameNewSideDataFromBuf(frame *AVFrame, _type AVFrameSideDataType,
|
|
buf *AVBufferRef) *AVFrameSideData {
|
|
return (*AVFrameSideData)(C.av_frame_new_side_data_from_buf((*C.struct_AVFrame)(frame),
|
|
(C.enum_AVFrameSideDataType)(_type), (*C.struct_AVBufferRef)(buf)))
|
|
}
|
|
|
|
// AvFrameGetSideData gets a pointer to the side data of a given type on success, NULL if there
|
|
// is no side data with such type in this frame.
|
|
func AvFrameGetSideData(frame *AVFrame, _type AVFrameSideDataType) *AVFrameSideData {
|
|
return (*AVFrameSideData)(C.av_frame_get_side_data((*C.struct_AVFrame)(frame),
|
|
(C.enum_AVFrameSideDataType)(_type)))
|
|
}
|
|
|
|
// AvFrameRemoveSideData remove and free all side data instances of the given type.
|
|
func AvFrameRemoveSideData(frame *AVFrame, _type AVFrameSideDataType) {
|
|
C.av_frame_remove_side_data((*C.struct_AVFrame)(frame), (C.enum_AVFrameSideDataType)(_type))
|
|
}
|
|
|
|
// Flags for frame cropping.
|
|
const (
|
|
AV_FRAME_CROP_UNALIGNED = int32(C.AV_FRAME_CROP_UNALIGNED)
|
|
)
|
|
|
|
// AvFrameApplyCropping crops the given video AVFrame according to its crop_left/crop_top/crop_right/
|
|
// crop_bottom fields.
|
|
func AvFrameApplyCropping(frame *AVFrame, flags int32) int32 {
|
|
return (int32)(C.av_frame_apply_cropping((*C.struct_AVFrame)(frame), (C.int)(flags)))
|
|
}
|
|
|
|
// AvFrameSideDataName returns a string identifying the side data type
|
|
func AvFrameSideDataName(_type AVFrameSideDataType) string {
|
|
return C.GoString(C.av_frame_side_data_name((C.enum_AVFrameSideDataType)(_type)))
|
|
}
|