mirror of
https://github.com/qrtc/ffmpeg-dev-go.git
synced 2025-09-26 20:01:22 +08:00
22 lines
508 B
Go
22 lines
508 B
Go
// Copyright (c) 2023 QRTC. All rights reserved.
|
|
// Use of this source code is governed by a MIT
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build ffmpeg_hw_opencl
|
|
|
|
package ffmpeg
|
|
|
|
/*
|
|
#include <libavutil/hwcontext_opencl.h>
|
|
*/
|
|
import "C"
|
|
|
|
// AVOpenCLFrameDescriptor
|
|
type AVOpenCLFrameDescriptor C.struct_AVOpenCLFrameDescriptor
|
|
|
|
// AVOpenCLDeviceContext
|
|
type AVOpenCLDeviceContext C.struct_AVOpenCLDeviceContext
|
|
|
|
// AVOpenCLFramesContext
|
|
type AVOpenCLFramesContext C.struct_AVOpenCLFramesContext
|