Hello community,

here is the log from the commit of package alsa-plugins for openSUSE:Factory 
checked in at 2016-04-05 10:41:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/alsa-plugins (Old)
 and      /work/SRC/openSUSE:Factory/.alsa-plugins.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "alsa-plugins"

Changes:
--------
--- /work/SRC/openSUSE:Factory/alsa-plugins/alsa-plugins.changes        
2016-02-09 16:48:44.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.alsa-plugins.new/alsa-plugins.changes   
2016-04-05 10:41:59.000000000 +0200
@@ -1,0 +2,11 @@
+Thu Mar 31 15:27:29 CEST 2016 - ti...@suse.de
+
+- Update to alsa-plugins 1.1.1:
+  including all previous fixes, fixes of a52 plugin for the recent
+  ffmpeg versions
+- Delete obsoleted patches:
+  0001-speex-Add-missing-include-config.h.patch
+  0002-a52-fix-reported-input-channel-order.patch
+  0003-pph-include-config.h-from-rate_speexrate.c.patch
+
+-------------------------------------------------------------------

Old:
----
  0001-speex-Add-missing-include-config.h.patch
  0002-a52-fix-reported-input-channel-order.patch
  0003-pph-include-config.h-from-rate_speexrate.c.patch
  alsa-plugins-1.1.0.tar.bz2

New:
----
  alsa-plugins-1.1.1.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ alsa-plugins.spec ++++++
--- /var/tmp/diff_new_pack.k5o3Q4/_old  2016-04-05 10:42:00.000000000 +0200
+++ /var/tmp/diff_new_pack.k5o3Q4/_new  2016-04-05 10:42:00.000000000 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define package_version        1.1.0
+%define package_version        1.1.1
 %if 0%{?suse_version} > 1030
 %define build_pulse    1
 %define build_speex    1
@@ -25,7 +25,7 @@
 %define build_speex    0
 %endif
 Name:           alsa-plugins
-Version:        1.1.0
+Version:        1.1.1
 Release:        0
 Summary:        Extra Plug-Ins for the ALSA Library
 License:        LGPL-2.1+
@@ -35,9 +35,6 @@
 Source1:        asound-pulse.conf
 Source2:        alsa-pulse.conf
 Source3:        baselibs.conf
-Patch1:         0001-speex-Add-missing-include-config.h.patch
-Patch2:         0002-a52-fix-reported-input-channel-order.patch
-Patch3:         0003-pph-include-config.h-from-rate_speexrate.c.patch
 BuildRequires:  alsa-devel
 BuildRequires:  dbus-1-devel
 BuildRequires:  libjack-devel
@@ -134,9 +131,6 @@
 
 %prep
 %setup -q -n %{name}-%{package_version}
-%patch1 -p1
-%patch2 -p1
-%patch3 -p1
 
 %build
 export AUTOMAKE_JOBS="%{?_smp_mflags}"

++++++ alsa-plugins-1.1.0.tar.bz2 -> alsa-plugins-1.1.1.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/alsa-plugins-1.1.0/a52/pcm_a52.c 
new/alsa-plugins-1.1.1/a52/pcm_a52.c
--- old/alsa-plugins-1.1.0/a52/pcm_a52.c        2015-10-27 14:34:06.000000000 
+0100
+++ new/alsa-plugins-1.1.1/a52/pcm_a52.c        2016-03-31 15:11:29.000000000 
+0200
@@ -39,7 +39,7 @@
 #endif
 
 #if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(53, 34, 0)
-#include <libavutil/audioconvert.h>
+#include <libavutil/channel_layout.h>
 #include <libavutil/mem.h>
 #define USE_AVCODEC_FRAME
 #endif
@@ -62,6 +62,11 @@
 #define AV_CODEC_ID_AC3 CODEC_ID_AC3
 #endif
 
+#if LIBAVCODEC_VERSION_INT < 0x371c01
+#define av_frame_alloc avcodec_alloc_frame
+#define av_frame_free avcodec_free_frame
+#endif
+
 struct a52_ctx {
        snd_pcm_ioplug_t io;
        snd_pcm_t *slave;
@@ -513,7 +518,7 @@
                rec->inbuf = NULL;
        }
 #if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(54, 28, 0)
-       avcodec_free_frame(&rec->frame);
+       av_frame_free(&rec->frame);
 #else
        av_freep(&rec->frame);
 #endif
@@ -557,7 +562,7 @@
 {
        struct a52_ctx *rec = io->private_data;
 #ifdef USE_AVCODEC_FRAME
-       rec->frame = avcodec_alloc_frame();
+       rec->frame = av_frame_alloc();
        if (!rec->frame)
                return -ENOMEM;
        if (av_samples_alloc(rec->frame->data, rec->frame->linesize,
@@ -663,8 +668,8 @@
 };
 static unsigned int chmap6[6] = {
        SND_CHMAP_FL, SND_CHMAP_FR,
-       SND_CHMAP_FC, SND_CHMAP_LFE,
        SND_CHMAP_RL, SND_CHMAP_RR,
+       SND_CHMAP_FC, SND_CHMAP_LFE,
 };
 
 static snd_pcm_chmap_query_t **a52_query_chmaps(snd_pcm_ioplug_t *io 
ATTRIBUTE_UNUSED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/alsa-plugins-1.1.0/configure 
new/alsa-plugins-1.1.1/configure
--- old/alsa-plugins-1.1.0/configure    2015-10-27 14:41:44.000000000 +0100
+++ new/alsa-plugins-1.1.1/configure    2016-03-31 15:14:07.000000000 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for alsa-plugins 1.1.0.
+# Generated by GNU Autoconf 2.69 for alsa-plugins 1.1.1.
 #
 #
 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -587,8 +587,8 @@
 # Identity of this package.
 PACKAGE_NAME='alsa-plugins'
 PACKAGE_TARNAME='alsa-plugins'
-PACKAGE_VERSION='1.1.0'
-PACKAGE_STRING='alsa-plugins 1.1.0'
+PACKAGE_VERSION='1.1.1'
+PACKAGE_STRING='alsa-plugins 1.1.1'
 PACKAGE_BUGREPORT=''
 PACKAGE_URL=''
 
@@ -1370,7 +1370,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures alsa-plugins 1.1.0 to adapt to many kinds of systems.
+\`configure' configures alsa-plugins 1.1.1 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1440,7 +1440,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of alsa-plugins 1.1.0:";;
+     short | recursive ) echo "Configuration of alsa-plugins 1.1.1:";;
    esac
   cat <<\_ACEOF
 
@@ -1589,7 +1589,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-alsa-plugins configure 1.1.0
+alsa-plugins configure 1.1.1
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1954,7 +1954,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by alsa-plugins $as_me 1.1.0, which was
+It was created by alsa-plugins $as_me 1.1.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2778,7 +2778,7 @@
 
 # Define the identity of the package.
  PACKAGE='alsa-plugins'
- VERSION='1.1.0'
+ VERSION='1.1.1'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -13136,7 +13136,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by alsa-plugins $as_me 1.1.0, which was
+This file was extended by alsa-plugins $as_me 1.1.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -13202,7 +13202,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-alsa-plugins config.status 1.1.0
+alsa-plugins config.status 1.1.1
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/alsa-plugins-1.1.0/configure.ac 
new/alsa-plugins-1.1.1/configure.ac
--- old/alsa-plugins-1.1.0/configure.ac 2015-10-27 14:34:06.000000000 +0100
+++ new/alsa-plugins-1.1.1/configure.ac 2016-03-31 15:11:29.000000000 +0200
@@ -1,5 +1,5 @@
 AC_PREREQ(2.59)
-AC_INIT(alsa-plugins, 1.1.0)
+AC_INIT(alsa-plugins, 1.1.1)
 AM_INIT_AUTOMAKE
 AC_PREFIX_DEFAULT(/usr)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/alsa-plugins-1.1.0/pph/rate_speexrate.c 
new/alsa-plugins-1.1.1/pph/rate_speexrate.c
--- old/alsa-plugins-1.1.0/pph/rate_speexrate.c 2015-10-27 14:34:06.000000000 
+0100
+++ new/alsa-plugins-1.1.1/pph/rate_speexrate.c 2016-03-31 15:11:29.000000000 
+0200
@@ -28,6 +28,7 @@
    POSSIBILITY OF SUCH DAMAGE.
 */
 
+#include "config.h"
 #include <stdio.h>
 #include <alsa/asoundlib.h>
 #include <alsa/pcm_rate.h>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/alsa-plugins-1.1.0/speex/pcm_speex.c 
new/alsa-plugins-1.1.1/speex/pcm_speex.c
--- old/alsa-plugins-1.1.0/speex/pcm_speex.c    2015-10-27 14:34:06.000000000 
+0100
+++ new/alsa-plugins-1.1.1/speex/pcm_speex.c    2016-03-31 15:11:29.000000000 
+0200
@@ -18,6 +18,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  */
 
+#include "config.h"
 #include <alsa/asoundlib.h>
 #include <alsa/pcm_external.h>
 #include <speex/speex_preprocess.h>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/alsa-plugins-1.1.0/version 
new/alsa-plugins-1.1.1/version
--- old/alsa-plugins-1.1.0/version      2015-10-27 14:41:45.000000000 +0100
+++ new/alsa-plugins-1.1.1/version      2016-03-31 15:14:09.000000000 +0200
@@ -1 +1 @@
-1.1.0
+1.1.1


Reply via email to