2023-10-27 06:28:27 CST W43D5

This commit is contained in:
aggresss
2023-10-27 06:28:28 +08:00
parent babffde433
commit 7a0773ebf2
57 changed files with 4729 additions and 2853 deletions

View File

@@ -7,7 +7,7 @@ package ffmpeg
import "C"
// AVERROR returns a negative error code from a POSIX error code, to return from library functions.
func AVERROR[T HelperInteger](ie T) (oe int32) {
func AVERROR[T Integer](ie T) (oe int32) {
oe = (int32)(ie)
if C.EDOM > 0 {
return (-oe)