mirror of
https://github.com/qrtc/ffmpeg-dev-go.git
synced 2025-09-26 20:01:22 +08:00
17 lines
382 B
Go
17 lines
382 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 <libavutil/version.h>
|
|
*/
|
|
import "C"
|
|
|
|
const (
|
|
LIBAVUTIL_VERSION_MAJOR = C.LIBAVUTIL_VERSION_MAJOR
|
|
LIBAVUTIL_VERSION_MINOR = C.LIBAVUTIL_VERSION_MINOR
|
|
LIBAVUTIL_VERSION_MICRO = C.LIBAVUTIL_VERSION_MICRO
|
|
)
|