diff options
author | Alfred E. Heggestad <aeh@db.org> | 2016-06-06 07:44:14 +0200 |
---|---|---|
committer | Alfred E. Heggestad <aeh@db.org> | 2016-06-06 07:46:01 +0200 |
commit | 362914f55831f4ad3afd7c0cad8f01f2f8b4892c (patch) | |
tree | d1833f22d9d40a764e44ac2f11f39ffc8779a486 | |
parent | 7e7251b8cb8c5f4f8490890a5a1c1706e080f45d (diff) |
vp9: needs libvpx v1.3.0 or later
-rw-r--r-- | mk/modules.mk | 3 | ||||
-rw-r--r-- | modules/vp9/vp9.c | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/mk/modules.mk b/mk/modules.mk index 86aa2b9..8f4f288 100644 --- a/mk/modules.mk +++ b/mk/modules.mk @@ -414,7 +414,8 @@ ifneq ($(USE_V4L2),) MODULES += v4l2 v4l2_codec endif ifneq ($(USE_VPX),) -MODULES += vp8 vp9 +MODULES += vp8 +MODULES += $(shell pkg-config 'vpx >= 1.3.0' && echo "vp9") endif ifneq ($(USE_WINWAVE),) MODULES += winwave diff --git a/modules/vp9/vp9.c b/modules/vp9/vp9.c index 852a19a..676d5c5 100644 --- a/modules/vp9/vp9.c +++ b/modules/vp9/vp9.c @@ -18,6 +18,9 @@ * This module implements the VP9 video codec that is compatible * with the WebRTC standard. * + * Libvpx version 1.3.0 or later is required. + * + * * References: * * http://www.webmproject.org/ |