Files
ffmpeg-dev-go/avutil_hwcontext_drm.go
2023-10-24 18:22:02 +08:00

28 lines
550 B
Go

//go:build ffmpeg_hw_drm
package ffmpeg
/*
#include <libavutil/hwcontext_drm.h>
*/
import "C"
const (
AV_DRM_MAX_PLANES = C.AV_DRM_MAX_PLANES
)
// AVDRMObjectDescriptor
type AVDRMObjectDescriptor C.struct_AVDRMObjectDescriptor
// AVDRMPlaneDescriptor
type AVDRMPlaneDescriptor C.struct_AVDRMPlaneDescriptor
// AVDRMLayerDescriptor
type AVDRMLayerDescriptor C.struct_AVDRMLayerDescriptor
// AVDRMFrameDescriptor
type AVDRMFrameDescriptor C.struct_AVDRMFrameDescriptor
// AVDRMDeviceContext
type AVDRMDeviceContext C.struct_AVDRMDeviceContext