Projects
Multimedia
audacious-plugins
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 29
View file
audacious-plugins.changes
Changed
@@ -1,4 +1,9 @@ ------------------------------------------------------------------- +Sat Jul 02 00:00:00 UTC 2011 - detlef@links2linux.de + +- new upstream version <2.5.3> + +------------------------------------------------------------------- Thu Jun 23 00:00:00 UTC 2011 - detlef@links2linux.de - new upstream version <2.5.2>
View file
audacious-plugins.spec
Changed
@@ -3,7 +3,7 @@ %define grp Productivity/Multimedia/Sound/Players Name: audacious-plugins -Version: 2.5.2 +Version: 2.5.3 Release: 1 Summary: Plugins for Audacious
View file
audacious-plugins-2.5.2.tar.gz/configure -> audacious-plugins-2.5.3.tar.gz/configure
Changed
@@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.68 for audacious-plugins 2.5.2. +# Generated by GNU Autoconf 2.68 for audacious-plugins 2.5.3. # # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, @@ -559,8 +559,8 @@ # Identity of this package. PACKAGE_NAME='audacious-plugins' PACKAGE_TARNAME='audacious-plugins' -PACKAGE_VERSION='2.5.2' -PACKAGE_STRING='audacious-plugins 2.5.2' +PACKAGE_VERSION='2.5.3' +PACKAGE_STRING='audacious-plugins 2.5.3' PACKAGE_BUGREPORT='' PACKAGE_URL='' @@ -1624,7 +1624,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 audacious-plugins 2.5.2 to adapt to many kinds of systems. +\`configure' configures audacious-plugins 2.5.3 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1691,7 +1691,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of audacious-plugins 2.5.2:";; + short | recursive ) echo "Configuration of audacious-plugins 2.5.3:";; esac cat <<\_ACEOF @@ -2017,7 +2017,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -audacious-plugins configure 2.5.2 +audacious-plugins configure 2.5.3 generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. @@ -2551,7 +2551,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by audacious-plugins $as_me 2.5.2, which was +It was created by audacious-plugins $as_me 2.5.3, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ @@ -3055,7 +3055,7 @@ PACKAGE=audacious-plugins -VERSION=2.5.2 +VERSION=2.5.3 @@ -18736,7 +18736,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by audacious-plugins $as_me 2.5.2, which was +This file was extended by audacious-plugins $as_me 2.5.3, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -18802,7 +18802,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -audacious-plugins config.status 2.5.2 +audacious-plugins config.status 2.5.3 configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\"
View file
audacious-plugins-2.5.2.tar.gz/configure.ac -> audacious-plugins-2.5.3.tar.gz/configure.ac
Changed
@@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([audacious-plugins], [2.5.2]) +AC_INIT([audacious-plugins], [2.5.3]) AC_COPYRIGHT([(C) 2005-2011 Audacious Team]) AC_PREREQ([2.59])
View file
audacious-plugins-2.5.2.tar.gz/src/aac/libmp4.c -> audacious-plugins-2.5.3.tar.gz/src/aac/libmp4.c
Changed
@@ -24,9 +24,6 @@ */ #define BUFFER_SIZE (FAAD_MIN_STREAMSIZE * 16) -static const guchar M4A_MAGIC[11] = {0x00, 0x00, 0x00, 0x20, 0x66, 0x74, 0x79, - 0x70, 0x4D, 0x34, 0x41}; - static void mp4_about (void); static void mp4_cleanup (void); static gint mp4_is_our_fd (const char *, VFSFile *); @@ -241,15 +238,6 @@ static gboolean mp4_is_our_fd (const gchar * filename, VFSFile * file) { - gchar magic[sizeof M4A_MAGIC]; - - if (vfs_fread (magic, 1, sizeof magic, file) != sizeof magic) - return FALSE; - if (! memcmp (magic, M4A_MAGIC, sizeof magic)) - return TRUE; - - if (vfs_fseek (file, 0, SEEK_SET)) - return FALSE; if (parse_aac_stream (file)) return TRUE;
View file
audacious-plugins-2.5.2.tar.gz/src/cue/cue.c -> audacious-plugins-2.5.3.tar.gz/src/cue/cue.c
Changed
@@ -87,7 +87,7 @@ g_return_val_if_fail (text, FALSE); Cd * cd = cue_parse_string (text); - g_free (buffer); + g_free (text); if (cd == NULL) return FALSE;
View file
audacious-plugins-2.5.2.tar.gz/src/ffaudio/ffaudio-core.c -> audacious-plugins-2.5.3.tar.gz/src/ffaudio/ffaudio-core.c
Changed
@@ -341,7 +341,11 @@ { s = ic->streams[i]; c = s->codec; +#if CHECK_LIBAVCODEC_VERSION (52, 64, 0) + if (c->codec_type == AVMEDIA_TYPE_AUDIO) +#else if (c->codec_type == CODEC_TYPE_AUDIO) +#endif { av_find_stream_info(ic); codec = avcodec_find_decoder(c->codec_id); @@ -415,7 +419,11 @@ { s = ic->streams[i]; c = s->codec; +#if CHECK_LIBAVCODEC_VERSION (52, 64, 0) + if (c->codec_type == AVMEDIA_TYPE_AUDIO) +#else if (c->codec_type == CODEC_TYPE_AUDIO) +#endif { av_find_stream_info(ic); codec = avcodec_find_decoder(c->codec_id);
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.