mirror of
https://github.com/qrtc/ffmpeg-dev-go.git
synced 2025-10-04 07:17:36 +08:00
17 lines
396 B
Go
17 lines
396 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 <libavdevice/version.h>
|
|
*/
|
|
import "C"
|
|
|
|
const (
|
|
LIBAVDEVICE_VERSION_MAJOR = C.LIBAVDEVICE_VERSION_MAJOR
|
|
LIBAVDEVICE_VERSION_MINOR = C.LIBAVDEVICE_VERSION_MINOR
|
|
LIBAVDEVICE_VERSION_MICRO = C.LIBAVDEVICE_VERSION_MICRO
|
|
)
|