2023-10-17 15:38:39 CST W42D2

This commit is contained in:
aggresss
2023-10-17 15:38:39 +08:00
parent 3189856a17
commit 762aa14362
39 changed files with 1481 additions and 309 deletions

View File

@@ -59,7 +59,7 @@ func AvMdctEnd(s *FftContext) {
C.av_mdct_end((*C.struct_FFTContext)(s))
}
type RDFTransformType int32
type RDFTransformType = C.enum_RDFTransformType
const (
DFT_R2C = RDFTransformType(C.DFT_R2C)
@@ -88,7 +88,7 @@ func AvRdftEnd(r *RDFTContext) {
type DCTContext C.struct_DCTContext
type DCTTransformType int32
type DCTTransformType = C.enum_DCTTransformType
const (
DCT_II = DCTTransformType(C.DCT_II)