diff options
author | Tanu Kaskinen <tanu.kaskinen@linux.intel.com> | 2015-03-19 10:17:33 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-20 23:51:26 +0000 |
commit | d3a656dd2a276a743925f55935789357c4cb4d97 (patch) | |
tree | 920329dce45d0e523f2ba72e0020729fe9d507de /meta | |
parent | fc5717a7a5828eaf07d96b7c5c6eae7a79bb5114 (diff) | |
download | openembedded-core-d3a656dd2a276a743925f55935789357c4cb4d97.tar.gz openembedded-core-d3a656dd2a276a743925f55935789357c4cb4d97.tar.bz2 openembedded-core-d3a656dd2a276a743925f55935789357c4cb4d97.zip |
pulseaudio: remove obsolete resampler patching
This sed script hasn't worked since PulseAudio 0.9.8 (released in
2007), because the match condition refers to "sinc-fastest", while the
default resampler is nowadays speex-float-1.
The idea behind the sed script might be good, but it seems obvious
that nobody is actually depending on the script, so let's just delete
it.
Signed-off-by: Tanu Kaskinen <tanu.kaskinen@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-multimedia/pulseaudio/pulseaudio.inc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/meta/recipes-multimedia/pulseaudio/pulseaudio.inc b/meta/recipes-multimedia/pulseaudio/pulseaudio.inc index c307c275f8..d6ddc3b609 100644 --- a/meta/recipes-multimedia/pulseaudio/pulseaudio.inc +++ b/meta/recipes-multimedia/pulseaudio/pulseaudio.inc @@ -59,10 +59,6 @@ OE_LT_RPATH_ALLOW[export]="1" do_install_append() { install -d ${D}${sysconfdir}/default/volatiles install -m 0644 ${WORKDIR}/volatiles.04_pulse ${D}${sysconfdir}/default/volatiles/volatiles.04_pulse - - if [ "x${TARGET_PFPU}" = "xsoft" ] ; then - sed -i -e s:\;\ resample-method\ =\ sinc-fastest:resample-method\ =\ trivial: ${D}${sysconfdir}/pulse/daemon.conf - fi } USERADD_PACKAGES = "pulseaudio-server" |