Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v4 1/2] x264: new package
@ 2014-10-05 16:29 David du Colombier
  2014-10-05 16:29 ` [Buildroot] [PATCH v4 2/2] ffmpeg: enable x264 support David du Colombier
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: David du Colombier @ 2014-10-05 16:29 UTC (permalink / raw)
  To: buildroot

This package is based on an earlier package
proposed by Ayaka in December 2013.

Signed-off-by: David du Colombier <0intro@gmail.com>
---
Changes v3 -> v4:
  - suggestions by Thomas Petazzoni
  - explicitly depend on yasm on x86

Changes v2 -> v3:
  - suggestions by Peter Korsgaard

Changes v1 -> v2:
  - suggestions by Thomas Petazzoni
---
 package/Config.in                                  |  1 +
 .../0001-arm-do-not-append-CFLAGS-to-ASFLAGS.patch | 34 +++++++++++++
 package/x264/Config.in                             | 23 +++++++++
 package/x264/x264.mk                               | 57 ++++++++++++++++++++++
 4 files changed, 115 insertions(+)
 create mode 100644 package/x264/0001-arm-do-not-append-CFLAGS-to-ASFLAGS.patch
 create mode 100644 package/x264/Config.in
 create mode 100644 package/x264/x264.mk

diff --git a/package/Config.in b/package/Config.in
index f488728..686d10d 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -756,6 +756,7 @@ menu "Multimedia"
 	source "package/libtheora/Config.in"
 	source "package/live555/Config.in"
 	source "package/mediastreamer/Config.in"
+	source "package/x264/Config.in"
 endmenu
 
 menu "Networking"
diff --git a/package/x264/0001-arm-do-not-append-CFLAGS-to-ASFLAGS.patch b/package/x264/0001-arm-do-not-append-CFLAGS-to-ASFLAGS.patch
new file mode 100644
index 0000000..3d40507
--- /dev/null
+++ b/package/x264/0001-arm-do-not-append-CFLAGS-to-ASFLAGS.patch
@@ -0,0 +1,34 @@
+From 716ee56d0b35e512e8e0ae1a3e71f26e65e86be3 Mon Sep 17 00:00:00 2001
+From: Janne Grunau <janne-x264@jannau.net>
+Date: Sun, 20 Jul 2014 12:55:53 +0200
+Subject: [PATCH 01/24] arm: do not append CFLAGS to ASFLAGS
+
+---
+ configure | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/configure b/configure
+index 0a4cb94..a50f8d5 100755
+--- a/configure
++++ b/configure
+@@ -296,7 +296,7 @@ opencl="yes"
+ CFLAGS="$CFLAGS -Wall -I. -I\$(SRCPATH)"
+ LDFLAGS="$LDFLAGS"
+ LDFLAGSCLI="$LDFLAGSCLI"
+-ASFLAGS="$ASFLAGS"
++ASFLAGS="$ASFLAGS -I. -I\$(SRCPATH)"
+ RCFLAGS="$RCFLAGS"
+ HAVE_GETOPT_LONG=1
+ cross_prefix=""
+@@ -752,7 +752,7 @@ if [ $asm = auto -a $ARCH = ARM ] ; then
+     if  cc_check '' '' '__asm__("rev ip, ip");' ; then      define HAVE_ARMV6
+         cc_check '' '' '__asm__("movt r0, #0");'         && define HAVE_ARMV6T2
+         cc_check '' '' '__asm__("vadd.i16 q0, q0, q0");' && define HAVE_NEON
+-        ASFLAGS="$ASFLAGS $CFLAGS -c"
++        ASFLAGS="$ASFLAGS -c"
+     else
+         echo "You specified a pre-ARMv6 or Thumb-1 CPU in your CFLAGS."
+         echo "If you really want to run on such a CPU, configure with --disable-asm."
+-- 
+1.8.3.1
+
diff --git a/package/x264/Config.in b/package/x264/Config.in
new file mode 100644
index 0000000..5e614b5
--- /dev/null
+++ b/package/x264/Config.in
@@ -0,0 +1,23 @@
+config BR2_PACKAGE_X264
+	bool "x264"
+	depends on BR2_LARGEFILE
+	help
+	  x264 is a free software library and application for
+	  encoding video streams into the H.264/MPEG-4 AVC
+	  compression format, and is released under the terms
+	  of the GNU GPL.
+
+	  https://www.videolan.org/developers/x264.html
+
+if BR2_PACKAGE_X264
+
+config BR2_PACKAGE_X264_CLI
+	bool "CLI"
+	help
+	  Command-line tool to encode video streams into the
+	  H.264/MPEG-4 AVC compression format.
+
+endif
+
+comment "x264 needs a toolchain w/ largefile"
+	depends on !BR2_LARGEFILE
diff --git a/package/x264/x264.mk b/package/x264/x264.mk
new file mode 100644
index 0000000..c2397f8
--- /dev/null
+++ b/package/x264/x264.mk
@@ -0,0 +1,57 @@
+###############################################################
+#
+# x264
+#
+###############################################################
+
+X264_VERSION = 20140930-2245-stable
+X264_SOURCE = x264-snapshot-$(X264_VERSION).tar.bz2
+X264_SITE = ftp://ftp.videolan.org/pub/videolan/x264/snapshots
+X264_LICENSE = GPLv2+
+X264_DEPENDENCIES = host-pkgconf
+X264_LICENSE_FILES = COPYING
+X264_INSTALL_STAGING = YES
+
+ifeq ($(BR2_i386)$(BR2_x86_64),y)
+	FFMPEG_DEPENDENCIES += host-yasm
+else
+	X264_CONF_OPTS += --disable-asm
+endif
+
+ifeq ($(BR2_PREFER_STATIC_LIB),)
+	X264_CONF_OPTS += --enable-pic --enable-shared
+endif
+
+ifeq ($(BR2_PACKAGE_X264_CLI),)
+	X264_CONF_OPTS += --disable-cli
+endif
+
+ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),)
+	X264_CONF_OPTS += --disable-thread
+endif
+
+# the configure script is not generated by autoconf
+define X264_CONFIGURE_CMDS
+	(cd $(@D); $(TARGET_CONFIGURE_OPTS) ./configure \
+		--prefix=/usr \
+		--host="$(GNU_TARGET_NAME)" \
+		--cross-prefix="$(TARGET_CROSS)" \
+		--disable-ffms \
+		--enable-static \
+		$(X264_CONF_OPTS) \
+	)
+endef
+
+define X264_BUILD_CMDS
+	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
+endef
+
+define X264_INSTALL_STAGING_CMDS
+	$(TARGET_MAKE_ENV) $(MAKE) DESTDIR="$(STAGING_DIR)" -C $(@D) install
+endef
+
+define X264_INSTALL_TARGET_CMDS
+	$(TARGET_MAKE_ENV) $(MAKE) DESTDIR="$(TARGET_DIR)" -C $(@D) install
+endef
+
+$(eval $(generic-package))
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH v4 2/2] ffmpeg: enable x264 support
  2014-10-05 16:29 [Buildroot] [PATCH v4 1/2] x264: new package David du Colombier
@ 2014-10-05 16:29 ` David du Colombier
  2014-10-07 21:08   ` Peter Korsgaard
  2014-10-07 21:07 ` [Buildroot] [PATCH v4 1/2] x264: new package Peter Korsgaard
  2014-10-08  8:13 ` Thomas Petazzoni
  2 siblings, 1 reply; 6+ messages in thread
From: David du Colombier @ 2014-10-05 16:29 UTC (permalink / raw)
  To: buildroot

Signed-off-by: David du Colombier <0intro@gmail.com>
---
Changes v1 -> v4:
  - s/FFMPEG_CONF_OPT/FFMPEG_CONF_OPTS/
---
 package/ffmpeg/ffmpeg.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/ffmpeg/ffmpeg.mk b/package/ffmpeg/ffmpeg.mk
index 41b06a7..6b5711c 100644
--- a/package/ffmpeg/ffmpeg.mk
+++ b/package/ffmpeg/ffmpeg.mk
@@ -229,6 +229,13 @@ else
 FFMPEG_CONF_OPTS += --disable-libvpx
 endif
 
+ifeq ($(BR2_PACKAGE_X264)$(BR2_PACKAGE_FFMPEG_GPL),yy)
+FFMPEG_CONF_OPTS += --enable-libx264
+FFMPEG_DEPENDENCIES += x264
+else
+FFMPEG_CONF_OPTS += --disable-libx264
+endif
+
 ifeq ($(BR2_X86_CPU_HAS_MMX),y)
 FFMPEG_CONF_OPTS += --enable-yasm
 FFMPEG_DEPENDENCIES += host-yasm
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH v4 1/2] x264: new package
  2014-10-05 16:29 [Buildroot] [PATCH v4 1/2] x264: new package David du Colombier
  2014-10-05 16:29 ` [Buildroot] [PATCH v4 2/2] ffmpeg: enable x264 support David du Colombier
@ 2014-10-07 21:07 ` Peter Korsgaard
  2014-10-08  8:13 ` Thomas Petazzoni
  2 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2014-10-07 21:07 UTC (permalink / raw)
  To: buildroot

>>>>> "David" == David du Colombier <0intro@gmail.com> writes:

 > This package is based on an earlier package
 > proposed by Ayaka in December 2013.

 > Signed-off-by: David du Colombier <0intro@gmail.com>
 > ---
 > Changes v3 -> v4:
 >   - suggestions by Thomas Petazzoni
 >   - explicitly depend on yasm on x86

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH v4 2/2] ffmpeg: enable x264 support
  2014-10-05 16:29 ` [Buildroot] [PATCH v4 2/2] ffmpeg: enable x264 support David du Colombier
@ 2014-10-07 21:08   ` Peter Korsgaard
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2014-10-07 21:08 UTC (permalink / raw)
  To: buildroot

>>>>> "David" == David du Colombier <0intro@gmail.com> writes:

 > Signed-off-by: David du Colombier <0intro@gmail.com>
 > ---
 > Changes v1 -> v4:
 >   - s/FFMPEG_CONF_OPT/FFMPEG_CONF_OPTS/

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH v4 1/2] x264: new package
  2014-10-05 16:29 [Buildroot] [PATCH v4 1/2] x264: new package David du Colombier
  2014-10-05 16:29 ` [Buildroot] [PATCH v4 2/2] ffmpeg: enable x264 support David du Colombier
  2014-10-07 21:07 ` [Buildroot] [PATCH v4 1/2] x264: new package Peter Korsgaard
@ 2014-10-08  8:13 ` Thomas Petazzoni
  2014-10-08  9:47   ` David du Colombier
  2 siblings, 1 reply; 6+ messages in thread
From: Thomas Petazzoni @ 2014-10-08  8:13 UTC (permalink / raw)
  To: buildroot

Dear David du Colombier,

On Sun,  5 Oct 2014 18:29:56 +0200, David du Colombier wrote:

> +ifeq ($(BR2_i386)$(BR2_x86_64),y)
> +	FFMPEG_DEPENDENCIES += host-yasm
> +else
> +	X264_CONF_OPTS += --disable-asm
> +endif

Well, I still believe this is suboptimal since there is some assembly
code for ARM that is available, but only for ARMv6+. But oh well, it
can always be implemented as a followup improvement.

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH v4 1/2] x264: new package
  2014-10-08  8:13 ` Thomas Petazzoni
@ 2014-10-08  9:47   ` David du Colombier
  0 siblings, 0 replies; 6+ messages in thread
From: David du Colombier @ 2014-10-08  9:47 UTC (permalink / raw)
  To: buildroot

> Well, I still believe this is suboptimal since there is some assembly
> code for ARM that is available, but only for ARMv6+. But oh well, it
> can always be implemented as a followup improvement.

Yes, I finally enabled assembly files on ARMv7 platforms.

It seems the ARMv6 processors (ARM1136JF-S, ARM1176JZ-S
and ARM1176JZF-S) are not supported:

common/arm/pixel-a.S:1281: Error: selected processor does not support
ARM mode `movw ip,#:lower16:235963'
common/arm/pixel-a.S:1281: Error: selected processor does not support
ARM mode `movt ip,#:upper16:235963'

I'll send a patch soon.

-- 
David du Colombier

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-10-08  9:47 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-05 16:29 [Buildroot] [PATCH v4 1/2] x264: new package David du Colombier
2014-10-05 16:29 ` [Buildroot] [PATCH v4 2/2] ffmpeg: enable x264 support David du Colombier
2014-10-07 21:08   ` Peter Korsgaard
2014-10-07 21:07 ` [Buildroot] [PATCH v4 1/2] x264: new package Peter Korsgaard
2014-10-08  8:13 ` Thomas Petazzoni
2014-10-08  9:47   ` David du Colombier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox