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