2023-11-02 09:29:33 CST W44D4

This commit is contained in:
aggresss
2023-11-02 09:29:33 +08:00
parent 9dab5c40ec
commit b9b515b939
3 changed files with 8 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ package ffmpeg
*/
import "C"
// FFALIGN
func FFALIGN[T Integer](x, a T) T {
return ((x) + (a) - 1) & ^((a) - 1)
}