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

15 lines
285 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_major.h>
*/
import "C"
const (
LIBSWSCALE_VERSION_MAJOR = C.LIBSWSCALE_VERSION_MAJOR
)