diff options
author | kwm <kwm@FreeBSD.org> | 2013-03-23 17:58:02 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2013-03-23 17:58:02 +0800 |
commit | 064c707fafaaeb8c7dc04023d0adab1286ba7112 (patch) | |
tree | 2b0c09673a6a4453a33fcaa148ccdde9e0d3c302 /audio | |
parent | a13775e8711434f6ffde198a52f9d22b3b898dca (diff) | |
download | freebsd-ports-gnome-064c707fafaaeb8c7dc04023d0adab1286ba7112.tar.gz freebsd-ports-gnome-064c707fafaaeb8c7dc04023d0adab1286ba7112.tar.zst freebsd-ports-gnome-064c707fafaaeb8c7dc04023d0adab1286ba7112.zip |
Add opus audio codec gstreamer plugin.
PR: ports/177296
Submitted by: "Eric L. Camachat" <eric@camachat.org>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/Makefile | 1 | ||||
-rw-r--r-- | audio/gstreamer-plugins-opus/Makefile | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/audio/Makefile b/audio/Makefile index 2c6b1105f619..97924bab5c02 100644 --- a/audio/Makefile +++ b/audio/Makefile @@ -278,6 +278,7 @@ SUBDIR += gstreamer-plugins-mp3 SUBDIR += gstreamer-plugins-musepack SUBDIR += gstreamer-plugins-nas + SUBDIR += gstreamer-plugins-opus SUBDIR += gstreamer-plugins-ogg SUBDIR += gstreamer-plugins-pulse SUBDIR += gstreamer-plugins-shout2 diff --git a/audio/gstreamer-plugins-opus/Makefile b/audio/gstreamer-plugins-opus/Makefile new file mode 100644 index 000000000000..0f1b8f1bc72b --- /dev/null +++ b/audio/gstreamer-plugins-opus/Makefile @@ -0,0 +1,12 @@ +# $FreeBSD$ + +PORTREVISION= 0 +CATEGORIES= audio + +COMMENT= Gstreamer Opus audio encoder/decoder plugin + +GST_PLUGIN= opus + +MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins + +.include "${MASTERDIR}/Makefile" |