Merge pull request #7968 from ts468/vaapi
Add gstreamer-vaapi for gstreamer-1.0.
This commit is contained in:
commit
6a96c2873f
@ -18,4 +18,6 @@ rec {
|
|||||||
gnonlin = callPackage ./gnonlin { inherit gst-plugins-base; };
|
gnonlin = callPackage ./gnonlin { inherit gst-plugins-base; };
|
||||||
|
|
||||||
gst-editing-services = callPackage ./ges { inherit gnonlin; };
|
gst-editing-services = callPackage ./ges { inherit gnonlin; };
|
||||||
|
|
||||||
|
gst-vaapi = callPackage ./vaapi { inherit gst-plugins-base gstreamer gst-plugins-bad; };
|
||||||
}
|
}
|
||||||
|
32
pkgs/development/libraries/gstreamer/vaapi/default.nix
Normal file
32
pkgs/development/libraries/gstreamer/vaapi/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, gst-plugins-base, bzip2, libva
|
||||||
|
, libdrm, udev, xorg, mesa, yasm, gstreamer, gst-plugins-bad, nasm
|
||||||
|
, libvpx
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "gst-vaapi-${version}";
|
||||||
|
version = "0.5.10";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "${meta.homepage}/software/vaapi/releases/gstreamer-vaapi/gstreamer-vaapi-${version}.tar.bz2";
|
||||||
|
sha256 = "179wnz4c4gnw9ibfgjrad9b44icygadaknsgjfw24lr2pz3kdlhd";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = with stdenv.lib; [ pkgconfig bzip2 ];
|
||||||
|
|
||||||
|
buildInputs = with stdenv.lib; [ gstreamer gst-plugins-base gst-plugins-bad libva libdrm udev
|
||||||
|
xorg.libX11 xorg.libXext xorg.libXv xorg.libXrandr mesa nasm libvpx ];
|
||||||
|
|
||||||
|
preConfigure = "
|
||||||
|
export GST_PLUGIN_PATH_1_0=$out/lib/gstreamer-1.0
|
||||||
|
mkdir -p $GST_PLUGIN_PATH_1_0
|
||||||
|
";
|
||||||
|
configureFlags = "--disable-builtin-libvpx --with-gstreamer-api=1.0";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "http://www.freedesktop.org";
|
||||||
|
license = stdenv.lib.licenses.lgpl21Plus;
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ tstrobel ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user