Added github action

This commit is contained in:
Quentin Renard
2023-07-27 18:00:10 +02:00
parent e5d0d37991
commit 202271beb6
15 changed files with 169 additions and 33 deletions

View File

@@ -93,7 +93,7 @@ func (l *ChannelLayout) String() string {
}
func (l *ChannelLayout) Describe(b []byte) (int, error) {
ret := C.av_channel_layout_describe(l.c, (*C.char)(unsafe.Pointer(&b[0])), C.ulong(len(b)))
ret := C.av_channel_layout_describe(l.c, (*C.char)(unsafe.Pointer(&b[0])), cUlong(len(b)))
if ret < 0 {
return 0, newError(ret)
}