Files
ffmpeg-dev-go/swscale_version.go
2023-11-05 08:43:33 +08:00

16 lines
334 B
Go

// Copyright (c) 2023 QRTC. All rights reserved.
// Use of this source code is governed by a MIT
// license that can be found in the LICENSE file.
package ffmpeg
/*
#include <libswscale/version.h>
*/
import "C"
const (
LIBSWSCALE_VERSION_MINOR = C.LIBSWSCALE_VERSION_MINOR
LIBSWSCALE_VERSION_MICRO = C.LIBSWSCALE_VERSION_MICRO
)