mirror of
https://github.com/asticode/go-astiav.git
synced 2025-09-27 04:26:30 +08:00
15 lines
308 B
Go
15 lines
308 B
Go
package astiav
|
|
|
|
// Struct attributes are internal but there are C functions to get some of them
|
|
type FilterPad struct {
|
|
mediaType MediaType
|
|
}
|
|
|
|
func newFilterPad(mediaType MediaType) *FilterPad {
|
|
return &FilterPad{mediaType: mediaType}
|
|
}
|
|
|
|
func (fp *FilterPad) MediaType() MediaType {
|
|
return fp.mediaType
|
|
}
|