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

@@ -57,7 +57,7 @@ func (s *Stream) SampleAspectRatio() Rational {
}
func (s *Stream) SideData(t PacketSideDataType) []byte {
return bytesFromC(func(size *C.ulong) *C.uint8_t {
return bytesFromC(func(size *cUlong) *C.uint8_t {
return C.av_stream_get_side_data(s.c, (C.enum_AVPacketSideDataType)(t), size)
})
}