videoplayer: add hardware-accelerated H.264 video decoding support
[nihav-player.git] / videoplayer / Cargo.toml
CommitLineData
69b93cb5
KS
1[package]
2name = "nihav-player"
3version = "0.1.0"
4authors = ["Kostya Shishkov <kostya.shishkov@gmail.com>"]
5edition = "2018"
6
7[dependencies]
8nihav_core = { path="../../nihav-core" }
9nihav_registry = { path="../../nihav-registry" }
10nihav_allstuff = { path="../../nihav-allstuff" }
35d0d63a 11hwdec_vaapi = { path="../hwdec-vaapi", optional = true }
69b93cb5
KS
12
13sdl2 = "^0.33"
14
15[features]
35d0d63a
KS
16default = ["hwaccel"]
17debug = []
18hwaccel = ["hwdec_vaapi"]