mirror of
https://github.com/asticode/go-astiav.git
synced 2025-10-30 03:01:47 +08:00
Moved all c code to .h and .c files + removed struc_ prefix when not needed
This commit is contained in:
@@ -5,10 +5,10 @@ import "C"
|
||||
|
||||
// https://github.com/FFmpeg/FFmpeg/blob/n5.0/libavfilter/avfilter.h#L471
|
||||
type FilterLink struct {
|
||||
c *C.struct_AVFilterLink
|
||||
c *C.AVFilterLink
|
||||
}
|
||||
|
||||
func newFilterLinkFromC(c *C.struct_AVFilterLink) *FilterLink {
|
||||
func newFilterLinkFromC(c *C.AVFilterLink) *FilterLink {
|
||||
if c == nil {
|
||||
return nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user