mirror of
https://github.com/qrtc/ffmpeg-dev-go.git
synced 2025-10-05 15:47:33 +08:00
2023-10-17 15:38:39 CST W42D2
This commit is contained in:
17
avutil_pixelutils.go
Normal file
17
avutil_pixelutils.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package ffmpeg
|
||||
|
||||
/*
|
||||
#include <libavutil/pixelutils.h>
|
||||
|
||||
*/
|
||||
import "C"
|
||||
import "unsafe"
|
||||
|
||||
type AvPixelutilsSadFn C.av_pixelutils_sad_fn
|
||||
|
||||
// AvPixelutilsGetSadFn gets a potentially optimized pointer to a Sum-of-absolute-differences
|
||||
// function (see the av_pixelutils_sad_fn prototype).
|
||||
func AvPixelutilsGetSadFn(wBits, hBits, aligned int32, logCtx unsafe.Pointer) AvPixelutilsSadFn {
|
||||
return (AvPixelutilsSadFn)(C.av_pixelutils_get_sad_fn((C.int)(wBits), (C.int)(hBits),
|
||||
(C.int)(aligned), logCtx))
|
||||
}
|
Reference in New Issue
Block a user