summaryrefslogtreecommitdiff
path: root/audio/libmp3splt/patches
diff options
context:
space:
mode:
authorryoon <ryoon>2013-07-05 16:12:30 +0000
committerryoon <ryoon>2013-07-05 16:12:30 +0000
commit05c1ed11881b7d7bddf223efa7d875794ad76f1d (patch)
tree18d1d7fb34e0aac9335546f3f9bbd97630106e9e /audio/libmp3splt/patches
parent91844ce44aeeb386c84a7a46a2faac4fd9a23271 (diff)
downloadpkgsrc-05c1ed11881b7d7bddf223efa7d875794ad76f1d.tar.gz
Update to 0.8.2
Changelog: libmp3splt version 0.8.2 ------------------------------------------------------------- - added option to specify the input tags encoding for when writing ID3v2 tags (SPLT_OPT_INPUT_TAGS_ENCODING) - enable -O3 by default - added LIBMP3SPLT_MAJOR_VERSION, LIBMP3SPLT_MINOR_VERSION and LIBMP3SPLT_MICRO_VERSION (feature request #96) - added option SPLT_TAGS_ORIGINAL for mp3splt_tags_set - added option to keep the original tags and just replace them when importing a CUE or CDDB file (SPLT_OPT_CUE_CDDB_ADD_TAGS_WITH_KEEP_ORIGINAL_TAGS) (feature request #95) - added 'split into memory' ability with a callback function for use with 'pretend to split' (feature request #94) - replaced mp3splt.m4 with pkg-config (bug #145) - corrected build files (configure.ac, Makefile.am, ...) and check using 'make distcheck' (bug #147) - fixed a lot of doxygen issues libmp3splt version 0.8.1a ------------------------------------------------------------- - corrected ChangeLog file of 0.8.1 release - added minimal.c in the distribution for the doxygen documentation - added libmp3splt_ico.svg in the distribution for the doxygen documentation - added something in the empty_footer.html file to avoid doxygen segfault libmp3splt version 0.8.1 ------------------------------------------------------------- - fixed a bug - was crashing when removing tags from skippoints - added option to set output ID3v2 tags encoded in latin1, UTF-8 or UTF16 - forgot to add 'empty_footer.html' in the distribution libmp3splt version 0.8 ------------------------------------------------------------- - rewritten libmp3splt public API to target future 1.0 stable release - written complete documentation of the public API - done issues #40 and #85 - added minimum silence length parameter for auto adjust - implemented back the proxy feature with basic authentification - feature #50 - added option to generate exactly the same input tags bytes using @O - added minimum silence length for trim silence mode (minimum silence to trigger a trimming) - done issue #12 - added option to output the full silence log useful to plot a graph - enhanced the CUE export to export the tags as REM comments and also the splitpoint names - fixed bug when detecting the input tags version - output had no tags when the input only had ID3v1 - fixed bug: output tags versions was not equal to the input file tags versions when the user was setting custom tags without any @o to get the original tags - done issue #79 - added 0 to the number of digits to output in order to be able to support the old mp3splt output format - fixed bug #141 - when input file is a symlink and output directory is the one of the input file - amplitude more precise with ogg vorbis files - plugins are now installed in $(libdir)/libmp3splt$(SONAME) instead of $(libdir)/libmp3splt - fixed bug #131 - use /usr/lib64 instead of /usr/lib on x64 in mp3splt.m4 - fixed bug #133 - updated GPLv2 COPYING file - fixed bug on mp3 trim silence scan: last frame was skipped - fixed bug #134 - use of deprecated gethostbyname() ------------------------------------------------------------- libmp3splt version 0.7.3 - added the trackjoin parameter for silence detection split: tracks shorter than trackjoin will be joined with others - fixed bug: removing TLEN id3v2 tag from the split files - fixed bug #3530488 - regression introduced with ogg multiple logical streams libmp3splt version 0.7.2 ------------------------------------------------------------- - fixed error when ID3v2 was containing what appears a valid frame; make sure we skip the ID3v2 after looking for the first frames - fixed bug #3497957 libtoolize vs glibtoolize - fixed #3487543 - compilation without pcre support - added the shots parameter to silence detection libmp3splt version 0.7.1 ------------------------------------------------------------- - added minimum track length option for silence scan - closes #2393766 - added option to set original tags when using 'replace tags in tags' - closes #3407314 - added support for multiple ogg/vorbis logical streams (mail) - fixed mp3 frame mode with skippoint when skippoint too small (on the same frame as previous) - fixed some regression regarding mp3splt v2.1c - removed some checks relative to the total time - we cannot rely on the total time - for example with concatenated mp3s - fixed several audacity labels issues - fixed inconsistency (extra 0 padding) between @n of custom tags and @n of output filename (mail) - fixed compilation error without libid3tag - fixed #3385833 - don't apply debugging flags or warnings flags by default: added --enable-c-debug --enable-optimise --enable-extra-warnings - fixed #3385827 - added --disable-doxygen_doc - fixed #3385829 - building doxygen documentation by itself + installing doxygen files
Diffstat (limited to 'audio/libmp3splt/patches')
-rw-r--r--audio/libmp3splt/patches/patch-aa20
1 files changed, 10 insertions, 10 deletions
diff --git a/audio/libmp3splt/patches/patch-aa b/audio/libmp3splt/patches/patch-aa
index d781eceaa82..45e0568bdb2 100644
--- a/audio/libmp3splt/patches/patch-aa
+++ b/audio/libmp3splt/patches/patch-aa
@@ -1,13 +1,13 @@
-$NetBSD: patch-aa,v 1.1 2010/11/30 19:16:23 drochner Exp $
+$NetBSD: patch-aa,v 1.2 2013/07/05 16:12:31 ryoon Exp $
---- src/oformat_parser.c.orig 2010-09-06 21:12:05.000000000 +0000
+--- src/oformat_parser.c.orig 2013-03-19 21:25:31.000000000 +0000
+++ src/oformat_parser.c
-@@ -760,7 +760,7 @@ static char splt_of_get_number_of_digits
- if (total_time > 0)
+@@ -335,7 +335,7 @@ char splt_of_get_number_of_digits_from_t
+ }
+
+ long minutes = total_time / 100 / 60;
+- int i = (int) (log10l((long double) minutes));
++ int i = (int) (log10((double) minutes));
+ char number_of_digits = (char) (i + '1');
+ if (number_of_digits == '1')
{
- long minutes = total_time / 100 / 60;
-- int i = (int) (log10l((long double) minutes));
-+ int i = (int) (log10((double) minutes));
- char number_of_digits = (char) (i + '1');
- if (number_of_digits == '1')
- {