2023-10-24 21:24:55 CST W43D2

This commit is contained in:
aggresss
2023-10-24 21:24:55 +08:00
parent e163918619
commit 4329c27b55
47 changed files with 3577 additions and 165 deletions

10
avutil_macros.go Normal file
View File

@@ -0,0 +1,10 @@
package ffmpeg
/*
#include <libavutil/macros.h>
*/
import "C"
func FFALIGN[T HelperInteger](x, a T) T {
return ((x) + (a) - 1) & ^((a) - 1)
}