Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] libmad: Add optimization config options
       [not found] <702722447.1326180.1342189637611.JavaMail.root@advansee.com>
@ 2012-07-13 14:28 ` Benoît Thébaudeau
  2012-07-13 17:25   ` [Buildroot] [PATCH v2] " Benoît Thébaudeau
  0 siblings, 1 reply; 6+ messages in thread
From: Benoît Thébaudeau @ 2012-07-13 14:28 UTC (permalink / raw)
  To: buildroot

Configuring libmad with --enable-speed compromises accuracy and can cause audio
clipping in some cases (heard on ARM platform with some loud MP3s), so give
users the choice of MAD optimizations.

The default config corresponds to the default behavior of libmad's configure.

Signed-off-by: Beno?t Th?baudeau <benoit.thebaudeau@advansee.com>
---
 .../package/libmad/Config.in                       |   41 ++++++++++++++++++++
 .../package/libmad/libmad.mk                       |    6 ++-
 2 files changed, 46 insertions(+), 1 deletion(-)

diff --git buildroot.orig/package/libmad/Config.in buildroot/package/libmad/Config.in
index 4d4f930..d4d08de 100644
--- buildroot.orig/package/libmad/Config.in
+++ buildroot/package/libmad/Config.in
@@ -6,3 +6,44 @@ config BR2_PACKAGE_LIBMAD
 	  without a floating-point unit.
 
 	  http://www.underbit.com/products/mad/
+
+if BR2_PACKAGE_LIBMAD
+
+choice
+	prompt "Speed vs. accuracy"
+	default BR2_PACKAGE_LIBMAD_SPEED_ACCURACY
+
+config BR2_PACKAGE_LIBMAD_SPEED
+	bool "Optimize for speed over accuracy"
+	help
+	  Compromise accuracy for speed.
+
+config BR2_PACKAGE_LIBMAD_ACCURACY
+	bool "Optimize for accuracy over speed"
+	help
+	  Compromise speed for accuracy.
+
+config BR2_PACKAGE_LIBMAD_SPEED_ACCURACY
+	bool "Optimize for both speed and accuracy"
+	help
+	  Keep optimizations balanced between speed and accuracy.
+
+endchoice
+
+config BR2_PACKAGE_LIBMAD_SSO
+	bool "Subband synthesis optimization"
+	help
+	  Use the subband synthesis optimization, with reduced accuracy.
+
+config BR2_PACKAGE_LIBMAD_ASO
+	bool "Architecture-specific optimizations"
+	default y
+	help
+	  Use certain architecture-specific optimizations.
+
+config BR2_PACKAGE_LIBMAD_STRICT_ISO
+	bool "Strict ISO/IEC interpretations"
+	help
+	  Use strict ISO/IEC interpretations.
+
+endif
diff --git buildroot.orig/package/libmad/libmad.mk buildroot/package/libmad/libmad.mk
index 6e53cf2..ce9b9f6 100644
--- buildroot.orig/package/libmad/libmad.mk
+++ buildroot/package/libmad/libmad.mk
@@ -30,6 +30,10 @@ LIBMAD_POST_INSTALL_TARGET_HOOKS += LIBMAD_INSTALL_TARGET_PC
 
 LIBMAD_CONF_OPT = \
 		--disable-debugging \
-		--enable-speed
+		$(if $(BR2_PACKAGE_LIBMAD_SPEED),--enable-speed) \
+		$(if $(BR2_PACKAGE_LIBMAD_ACCURACY),--enable-accuracy) \
+		--$(if $(BR2_PACKAGE_LIBMAD_SSO),enable,disable)-sso \
+		--$(if $(BR2_PACKAGE_LIBMAD_ASO),enable,disable)-aso \
+		--$(if $(BR2_PACKAGE_LIBMAD_STRICT_ISO),enable,disable)-strict-iso
 
 $(eval $(call AUTOTARGETS))

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

* [Buildroot] [PATCH v2] libmad: Add optimization config options
  2012-07-13 14:28 ` [Buildroot] [PATCH] libmad: Add optimization config options Benoît Thébaudeau
@ 2012-07-13 17:25   ` Benoît Thébaudeau
  2012-07-13 19:41     ` Thomas Petazzoni
  0 siblings, 1 reply; 6+ messages in thread
From: Benoît Thébaudeau @ 2012-07-13 17:25 UTC (permalink / raw)
  To: buildroot

Configuring libmad with --enable-speed compromises accuracy and can cause audio
clipping in some cases (heard on ARM platform with some loud MP3s), so give
users the choice of MAD optimizations.

The default config corresponds to the default behavior of libmad's configure.

Signed-off-by: Beno?t Th?baudeau <benoit.thebaudeau@advansee.com>
---
Note that, if applicable, the options are always passed with either '--enable-'
or '--disable-' to be more robust than a simple omission, since this can avoid a
mismatch in config options if the package version is changed and its new default
configure options are different.

Changes for v2:
   - Factorize the 'able' in the $(if ).

 .../package/libmad/Config.in                       |   41 ++++++++++++++++++++
 .../package/libmad/libmad.mk                       |    6 ++-
 2 files changed, 46 insertions(+), 1 deletion(-)

diff --git buildroot.orig/package/libmad/Config.in buildroot/package/libmad/Config.in
index 4d4f930..d4d08de 100644
--- buildroot.orig/package/libmad/Config.in
+++ buildroot/package/libmad/Config.in
@@ -6,3 +6,44 @@ config BR2_PACKAGE_LIBMAD
 	  without a floating-point unit.
 
 	  http://www.underbit.com/products/mad/
+
+if BR2_PACKAGE_LIBMAD
+
+choice
+	prompt "Speed vs. accuracy"
+	default BR2_PACKAGE_LIBMAD_SPEED_ACCURACY
+
+config BR2_PACKAGE_LIBMAD_SPEED
+	bool "Optimize for speed over accuracy"
+	help
+	  Compromise accuracy for speed.
+
+config BR2_PACKAGE_LIBMAD_ACCURACY
+	bool "Optimize for accuracy over speed"
+	help
+	  Compromise speed for accuracy.
+
+config BR2_PACKAGE_LIBMAD_SPEED_ACCURACY
+	bool "Optimize for both speed and accuracy"
+	help
+	  Keep optimizations balanced between speed and accuracy.
+
+endchoice
+
+config BR2_PACKAGE_LIBMAD_SSO
+	bool "Subband synthesis optimization"
+	help
+	  Use the subband synthesis optimization, with reduced accuracy.
+
+config BR2_PACKAGE_LIBMAD_ASO
+	bool "Architecture-specific optimizations"
+	default y
+	help
+	  Use certain architecture-specific optimizations.
+
+config BR2_PACKAGE_LIBMAD_STRICT_ISO
+	bool "Strict ISO/IEC interpretations"
+	help
+	  Use strict ISO/IEC interpretations.
+
+endif
diff --git buildroot.orig/package/libmad/libmad.mk buildroot/package/libmad/libmad.mk
index 6e53cf2..1c77e28 100644
--- buildroot.orig/package/libmad/libmad.mk
+++ buildroot/package/libmad/libmad.mk
@@ -30,6 +30,10 @@ LIBMAD_POST_INSTALL_TARGET_HOOKS += LIBMAD_INSTALL_TARGET_PC
 
 LIBMAD_CONF_OPT = \
 		--disable-debugging \
-		--enable-speed
+		$(if $(BR2_PACKAGE_LIBMAD_SPEED),--enable-speed) \
+		$(if $(BR2_PACKAGE_LIBMAD_ACCURACY),--enable-accuracy) \
+		--$(if $(BR2_PACKAGE_LIBMAD_SSO),en,dis)able-sso \
+		--$(if $(BR2_PACKAGE_LIBMAD_ASO),en,dis)able-aso \
+		--$(if $(BR2_PACKAGE_LIBMAD_STRICT_ISO),en,dis)able-strict-iso
 
 $(eval $(call AUTOTARGETS))

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

* [Buildroot] [PATCH v2] libmad: Add optimization config options
  2012-07-13 17:25   ` [Buildroot] [PATCH v2] " Benoît Thébaudeau
@ 2012-07-13 19:41     ` Thomas Petazzoni
  2012-07-13 19:51       ` Benoît Thébaudeau
  0 siblings, 1 reply; 6+ messages in thread
From: Thomas Petazzoni @ 2012-07-13 19:41 UTC (permalink / raw)
  To: buildroot

Hello,

Le Fri, 13 Jul 2012 19:25:12 +0200 (CEST),
Beno?t Th?baudeau <benoit.thebaudeau@advansee.com> a ?crit :

> Changes for v2:
>    - Factorize the 'able' in the $(if ).

I prefer the solution in v1 with regard to this, as it is much easier
to read.

> +choice
> +	prompt "Speed vs. accuracy"
> +	default BR2_PACKAGE_LIBMAD_SPEED_ACCURACY

What about calling those options:

 BR2_PACKAGE_LIBMAD_OPTIMIZATION_SPEED
 BR2_PACKAGE_LIBMAD_OPTIMIZATION_ACCURACY
 BR2_PACKAGE_LIBMAD_OPTIMIZATION_DEFAULT

> +config BR2_PACKAGE_LIBMAD_SPEED_ACCURACY
> +	bool "Optimize for both speed and accuracy"

This should rather be:

	bool "Default"

or something like that. Technically, this option does not enable any
special optimization for both speed and accuracy, it just uses the
default options.

Thanks,

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [Buildroot] [PATCH v2] libmad: Add optimization config options
  2012-07-13 19:41     ` Thomas Petazzoni
@ 2012-07-13 19:51       ` Benoît Thébaudeau
  2012-07-13 20:14         ` [Buildroot] [PATCH v3] " Benoît Thébaudeau
  0 siblings, 1 reply; 6+ messages in thread
From: Benoît Thébaudeau @ 2012-07-13 19:51 UTC (permalink / raw)
  To: buildroot

Hi Thomas,

> > Changes for v2:
> >    - Factorize the 'able' in the $(if ).
> 
> I prefer the solution in v1 with regard to this, as it is much easier
> to read.

As you prefer.

> > +choice
> > +	prompt "Speed vs. accuracy"
> > +	default BR2_PACKAGE_LIBMAD_SPEED_ACCURACY
> 
> What about calling those options:
> 
>  BR2_PACKAGE_LIBMAD_OPTIMIZATION_SPEED
>  BR2_PACKAGE_LIBMAD_OPTIMIZATION_ACCURACY
>  BR2_PACKAGE_LIBMAD_OPTIMIZATION_DEFAULT
> 
> > +config BR2_PACKAGE_LIBMAD_SPEED_ACCURACY
> > +	bool "Optimize for both speed and accuracy"
> 
> This should rather be:
> 
> 	bool "Default"
> 
> or something like that. Technically, this option does not enable any
> special optimization for both speed and accuracy, it just uses the
> default options.

Actually, libmad's README says that the default options (neither --enable-speed
nor --enable-accuracy) imply an optimization of both:

"Note that you need not specify one of --enable-speed or --enable-accuracy; in
its default configuration, MAD is optimized for both."

But it refuses to configure with both options, and there is indeed technically
nothing special done by default.

I'll post a v3 doing all that.

Regards,
Beno?t

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

* [Buildroot] [PATCH v3] libmad: Add optimization config options
  2012-07-13 19:51       ` Benoît Thébaudeau
@ 2012-07-13 20:14         ` Benoît Thébaudeau
  2012-07-13 20:48           ` Thomas Petazzoni
  0 siblings, 1 reply; 6+ messages in thread
From: Benoît Thébaudeau @ 2012-07-13 20:14 UTC (permalink / raw)
  To: buildroot

Configuring libmad with --enable-speed compromises accuracy and can cause audio
clipping in some cases (heard on ARM platform with some loud MP3s), so give
users the choice of MAD optimizations.

The default config corresponds to the default behavior of libmad's configure.

Signed-off-by: Beno?t Th?baudeau <benoit.thebaudeau@advansee.com>
---
Note that, if applicable, the options are always passed with either '--enable-'
or '--disable-' to be more robust than a simple omission, since this can avoid a
mismatch in config options if the package version is changed and its new default
configure options are different.

Changes for v2:
   - Factorize the 'able' in the $(if ).

Changes for v3 (according to Thomas Petazzoni's comments):
   - Undo v2.
   - Rename the speed vs. accuracy choice configs to
     BR2_PACKAGE_LIBMAD_OPTIMIZATION_*.
   - Use 'default' naming if neither speed nor accuracy is compromised for the
     other.

 .../package/libmad/Config.in                       |   41 ++++++++++++++++++++
 .../package/libmad/libmad.mk                       |    6 ++-
 2 files changed, 46 insertions(+), 1 deletion(-)

diff --git buildroot.orig/package/libmad/Config.in buildroot/package/libmad/Config.in
index 4d4f930..d0edc49 100644
--- buildroot.orig/package/libmad/Config.in
+++ buildroot/package/libmad/Config.in
@@ -6,3 +6,44 @@ config BR2_PACKAGE_LIBMAD
 	  without a floating-point unit.
 
 	  http://www.underbit.com/products/mad/
+
+if BR2_PACKAGE_LIBMAD
+
+choice
+	prompt "Speed vs. accuracy"
+	default BR2_PACKAGE_LIBMAD_OPTIMIZATION_DEFAULT
+
+config BR2_PACKAGE_LIBMAD_OPTIMIZATION_DEFAULT
+	bool "Default"
+	help
+	  Keep optimizations balanced between speed and accuracy.
+
+config BR2_PACKAGE_LIBMAD_OPTIMIZATION_SPEED
+	bool "Optimize for speed over accuracy"
+	help
+	  Compromise accuracy for speed.
+
+config BR2_PACKAGE_LIBMAD_OPTIMIZATION_ACCURACY
+	bool "Optimize for accuracy over speed"
+	help
+	  Compromise speed for accuracy.
+
+endchoice
+
+config BR2_PACKAGE_LIBMAD_SSO
+	bool "Subband synthesis optimization"
+	help
+	  Use the subband synthesis optimization, with reduced accuracy.
+
+config BR2_PACKAGE_LIBMAD_ASO
+	bool "Architecture-specific optimizations"
+	default y
+	help
+	  Use certain architecture-specific optimizations.
+
+config BR2_PACKAGE_LIBMAD_STRICT_ISO
+	bool "Strict ISO/IEC interpretations"
+	help
+	  Use strict ISO/IEC interpretations.
+
+endif
diff --git buildroot.orig/package/libmad/libmad.mk buildroot/package/libmad/libmad.mk
index 6e53cf2..3c92d52 100644
--- buildroot.orig/package/libmad/libmad.mk
+++ buildroot/package/libmad/libmad.mk
@@ -30,6 +30,10 @@ LIBMAD_POST_INSTALL_TARGET_HOOKS += LIBMAD_INSTALL_TARGET_PC
 
 LIBMAD_CONF_OPT = \
 		--disable-debugging \
-		--enable-speed
+		$(if $(BR2_PACKAGE_LIBMAD_OPTIMIZATION_SPEED),--enable-speed) \
+		$(if $(BR2_PACKAGE_LIBMAD_OPTIMIZATION_ACCURACY),--enable-accuracy) \
+		--$(if $(BR2_PACKAGE_LIBMAD_SSO),enable,disable)-sso \
+		--$(if $(BR2_PACKAGE_LIBMAD_ASO),enable,disable)-aso \
+		--$(if $(BR2_PACKAGE_LIBMAD_STRICT_ISO),enable,disable)-strict-iso
 
 $(eval $(call AUTOTARGETS))

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

* [Buildroot] [PATCH v3] libmad: Add optimization config options
  2012-07-13 20:14         ` [Buildroot] [PATCH v3] " Benoît Thébaudeau
@ 2012-07-13 20:48           ` Thomas Petazzoni
  0 siblings, 0 replies; 6+ messages in thread
From: Thomas Petazzoni @ 2012-07-13 20:48 UTC (permalink / raw)
  To: buildroot

Le Fri, 13 Jul 2012 22:14:05 +0200 (CEST),
Beno?t Th?baudeau <benoit.thebaudeau@advansee.com> a ?crit :

> Configuring libmad with --enable-speed compromises accuracy and can cause audio
> clipping in some cases (heard on ARM platform with some loud MP3s), so give
> users the choice of MAD optimizations.
> 
> The default config corresponds to the default behavior of libmad's configure.
> 
> Signed-off-by: Beno?t Th?baudeau <benoit.thebaudeau@advansee.com>

Applied, thanks.

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

end of thread, other threads:[~2012-07-13 20:48 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <702722447.1326180.1342189637611.JavaMail.root@advansee.com>
2012-07-13 14:28 ` [Buildroot] [PATCH] libmad: Add optimization config options Benoît Thébaudeau
2012-07-13 17:25   ` [Buildroot] [PATCH v2] " Benoît Thébaudeau
2012-07-13 19:41     ` Thomas Petazzoni
2012-07-13 19:51       ` Benoît Thébaudeau
2012-07-13 20:14         ` [Buildroot] [PATCH v3] " Benoît Thébaudeau
2012-07-13 20:48           ` Thomas Petazzoni

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