summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-04-30 08:33:47 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-04-30 08:33:47 +0000
commit7b6ce0f9df38d40188b36f556edec3e65ac29562 (patch)
tree7916a73918d3827e7d148551b78442a26fa3a5f6 /pkgs
parent9b48c69f85d6d49bc71f29376332e17c6c872e9a (diff)
downloadnixlib-7b6ce0f9df38d40188b36f556edec3e65ac29562.tar
nixlib-7b6ce0f9df38d40188b36f556edec3e65ac29562.tar.gz
nixlib-7b6ce0f9df38d40188b36f556edec3e65ac29562.tar.bz2
nixlib-7b6ce0f9df38d40188b36f556edec3e65ac29562.tar.lz
nixlib-7b6ce0f9df38d40188b36f556edec3e65ac29562.tar.xz
nixlib-7b6ce0f9df38d40188b36f556edec3e65ac29562.tar.zst
nixlib-7b6ce0f9df38d40188b36f556edec3e65ac29562.zip
Updating x264, and adding x264 support to mplayer and ffmpeg.
svn path=/nixpkgs/trunk/; revision=21451
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/video/MPlayer/default.nix5
-rw-r--r--pkgs/development/libraries/ffmpeg/default.nix5
-rw-r--r--pkgs/development/libraries/x264/default.nix17
-rw-r--r--pkgs/top-level/all-packages.nix5
4 files changed, 20 insertions, 12 deletions
diff --git a/pkgs/applications/video/MPlayer/default.nix b/pkgs/applications/video/MPlayer/default.nix
index 6d2de592f428..c9cd1909421c 100644
--- a/pkgs/applications/video/MPlayer/default.nix
+++ b/pkgs/applications/video/MPlayer/default.nix
@@ -6,6 +6,7 @@
 , cdparanoia ? null, cddaSupport ? true
 , amrnb ? null, amrwb ? null, amrSupport ? false
 , jackaudioSupport ? false, jackaudio ? null
+, x264Support ? false, x264 ? null
 , mesa, pkgconfig, unzip
 }:
 
@@ -61,11 +62,13 @@ stdenv.mkDerivation {
     ++ stdenv.lib.optionals dvdnavSupport [ libdvdnav libdvdnav.libdvdread ]
     ++ stdenv.lib.optional cddaSupport cdparanoia
     ++ stdenv.lib.optional jackaudioSupport jackaudio
-    ++ stdenv.lib.optionals amrSupport [ amrnb amrwb ];
+    ++ stdenv.lib.optionals amrSupport [ amrnb amrwb ]
+    ++ stdenv.lib.optional x264Support x264;
 
   configureFlags = ''
     ${if cacaSupport then "--enable-caca" else "--disable-caca"}
     ${if dvdnavSupport then "--enable-dvdnav --enable-dvdread --disable-dvdread-internal" else ""}
+    ${if x264Support then "--enable-x264 --extra-libs=-lx264" else ""}
     --codecsdir=${codecs}
     --enable-runtime-cpudetection
     --enable-x11
diff --git a/pkgs/development/libraries/ffmpeg/default.nix b/pkgs/development/libraries/ffmpeg/default.nix
index cdb9bb887e82..1650c6141f4c 100644
--- a/pkgs/development/libraries/ffmpeg/default.nix
+++ b/pkgs/development/libraries/ffmpeg/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, faad2, libtheora, speex, libvorbis}:
+{stdenv, fetchurl, faad2, libtheora, speex, libvorbis, x264, pkgconfig}:
 
 stdenv.mkDerivation {
   name = "ffmpeg-0.5.1";
@@ -22,9 +22,10 @@ stdenv.mkDerivation {
     --enable-libtheora
     --enable-libvorbis
     --enable-libspeex
+    --enable-libx264
   '';
 
-  buildInputs = [faad2 libtheora speex libvorbis];
+  buildInputs = [faad2 libtheora speex libvorbis x264 pkgconfig];
 
   meta = {
     homepage = http://www.ffmpeg.org/;
diff --git a/pkgs/development/libraries/x264/default.nix b/pkgs/development/libraries/x264/default.nix
index 636a5081c5f0..606fd825d161 100644
--- a/pkgs/development/libraries/x264/default.nix
+++ b/pkgs/development/libraries/x264/default.nix
@@ -1,16 +1,19 @@
-args:
-args.stdenv.mkDerivation rec {
-  version = "snapshot-20080521-2245";
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  version = "snapshot-20100429-2245";
   name = "x264-${version}";
 
-  src = args.fetchurl {
+  src = fetchurl {
     url = "ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-${version}.tar.bz2";
-    sha256 = "07khxih1lmhvrzlaksqmaghbi8w2yyjrjcw867gi2y4z1h0ndhks";
+    sha256 = "16b24mc63zyp4h4fqyvgzbdclnhpay4l72yfqzwnzsnlby94zwcj";
   };
 
-  configureFlags= if args.stdenv.system == "x86_64-linux" then ["--enable-pic"] else [];
+  patchPhase = ''
+    sed -i s,/bin/bash,${stdenv.bash}/bin/bash, configure version.sh
+  '';
 
-  buildInputs =(with args; []);
+  configureFlags = [ "--disable-asm" "--enable-shared" ];
 
   meta = { 
       description = "library for encoding H264/AVC video streams";
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 386c8cb0730b..fdaf25b1c7d3 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -3645,7 +3645,7 @@ let
   };
 
   ffmpeg = import ../development/libraries/ffmpeg {
-    inherit fetchurl stdenv faad2 libvorbis speex libtheora;
+    inherit fetchurl stdenv faad2 libvorbis speex libtheora x264 pkgconfig;
   };
 
   fftw = import ../development/libraries/fftw {
@@ -7877,7 +7877,7 @@ let
 
   MPlayer = import ../applications/video/MPlayer {
     inherit fetchurl stdenv freetype fontconfig x11 zlib libtheora libcaca libdvdnav
-      cdparanoia mesa pkgconfig unzip amrnb amrwb jackaudio;
+      cdparanoia mesa pkgconfig unzip amrnb amrwb jackaudio x264;
     inherit (xlibs) libX11 libXv libXinerama libXrandr;
     alsaSupport = true;
     alsa = alsaLib;
@@ -7887,6 +7887,7 @@ let
     randrSupport = true;
     cddaSupport = true;
     amrSupport = getConfig [ "MPlayer" "amr" ] false;
+    x264Support = true;
   };
 
   MPlayerPlugin = browser: