aboutsummaryrefslogtreecommitdiffstats
path: root/meta-mentor-staging/recipes-multimedia/alsa/alsa-lib/plug_fix_rate_converter_config.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-mentor-staging/recipes-multimedia/alsa/alsa-lib/plug_fix_rate_converter_config.patch')
-rw-r--r--meta-mentor-staging/recipes-multimedia/alsa/alsa-lib/plug_fix_rate_converter_config.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/meta-mentor-staging/recipes-multimedia/alsa/alsa-lib/plug_fix_rate_converter_config.patch b/meta-mentor-staging/recipes-multimedia/alsa/alsa-lib/plug_fix_rate_converter_config.patch
deleted file mode 100644
index 8ec789a0..00000000
--- a/meta-mentor-staging/recipes-multimedia/alsa/alsa-lib/plug_fix_rate_converter_config.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-Upstream-Status: Pending
-
-# Author: Andreas Pape <apape@de.adit-jv.com>
-# Date: Tue Feb 4 10:00:00 2014
-# pcm plug: save converter config.
-#
-# Passed config is freed after call to open, thus it is invalid when trying to extract the converter name.
-# This patch copies the config entry for later usage.
-#
-
-Index: alsa-lib-1.1.4.1/src/pcm/pcm_plug.c
-===================================================================
---- alsa-lib-1.1.4.1.orig/src/pcm/pcm_plug.c 2017-06-30 02:06:01.200623861 +0500
-+++ alsa-lib-1.1.4.1/src/pcm/pcm_plug.c 2017-06-30 02:06:01.196623861 +0500
-@@ -1122,6 +1122,8 @@
-
- err = snd_pcm_new(&pcm, SND_PCM_TYPE_PLUG, name, slave->stream, slave->mode);
- if (err < 0) {
-+ if (plug->rate_converter)
-+ snd_config_delete((snd_config_t*)plug->rate_converter);
- free(plug);
- return err;
- }