We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e4dfb2 commit e2c9222Copy full SHA for e2c9222
custom.go
@@ -19,3 +19,7 @@ func AVOptSetSlice[T any](obj unsafe.Pointer, name *CStr, val []T, searchFlags i
19
func (s *AVRational) String() string {
20
return fmt.Sprintf("%v/%v (%v)", s.Num(), s.Den(), s.Num()/s.Den())
21
}
22
+
23
+func FFIOWFourCC(s *AVIOContext, a uint8, b uint8, c uint8, d uint8) {
24
+ AVIOWl32(s, uint(a)|(uint(b)<<8)|(uint(c)<<16)|(uint(d)<<24))
25
+}
0 commit comments