Files
ffmpeg-dev-go/avutil_ffversion.go
2023-10-30 20:46:52 +08:00

15 lines
260 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/ffversion.h>
*/
import "C"
const (
FFMPEG_VERSION = C.FFMPEG_VERSION
)