2023-10-22 11:46:19 CST W43D0

This commit is contained in:
aggresss
2023-10-22 11:46:19 +08:00
parent 0f95831c39
commit e163918619
62 changed files with 2326 additions and 355 deletions

View File

@@ -6,11 +6,21 @@ package ffmpeg
import "C"
// FFTSample
type FFTSample C.FFTSample
type FFTSample = C.FFTSample
// FFTComplex
type FFTComplex C.struct_FFTComplex
// Custom: GetRe gets `FFTComplex.re` value.
func (fc *FFTComplex) GetRe() FFTSample {
return (FFTSample)(fc.re)
}
// Custom: GetIm gets `FFTComplex.im` value.
func (fc *FFTComplex) GetIm() FFTSample {
return (FFTSample)(fc.im)
}
// FFTContext
type FFTContext C.struct_FFTContext