mirror of
https://github.com/qrtc/ffmpeg-dev-go.git
synced 2025-09-27 04:06:10 +08:00
13 lines
248 B
Go
13 lines
248 B
Go
package ffmpeg
|
|
|
|
/*
|
|
#include <libavfilter/version.h>
|
|
*/
|
|
import "C"
|
|
|
|
const (
|
|
LIBAVFILTER_VERSION_MAJOR = C.LIBAVFILTER_VERSION_MAJOR
|
|
LIBAVFILTER_VERSION_MINOR = C.LIBAVFILTER_VERSION_MINOR
|
|
LIBAVFILTER_VERSION_MICRO = C.LIBAVFILTER_VERSION_MICRO
|
|
)
|