27 lines
755 B
TOML
27 lines
755 B
TOML
[package]
|
|
name = "ffmpeg"
|
|
version = "0.1.0"
|
|
authors = ["meh. <meh@schizofreni.co>"]
|
|
license = "WTFPL"
|
|
|
|
[features]
|
|
default = ["codec", "device", "filter", "format", "resampling", "postprocessing", "software-resampling", "software-scaling"]
|
|
|
|
codec = ["ffmpeg-sys/avcodec"]
|
|
device = ["ffmpeg-sys/avdevice", "format"]
|
|
filter = ["ffmpeg-sys/avfilter"]
|
|
format = ["ffmpeg-sys/avformat", "codec"]
|
|
resampling = ["ffmpeg-sys/avresample"]
|
|
postprocessing = ["ffmpeg-sys/postproc"]
|
|
software-resampling = ["ffmpeg-sys/swresample"]
|
|
software-scaling = ["ffmpeg-sys/swscale", "codec"]
|
|
|
|
[dependencies]
|
|
libc = "0.1"
|
|
bitflags = "0.1"
|
|
|
|
[dependencies.ffmpeg-sys]
|
|
version = "2.6.2"
|
|
|
|
default-features = false
|