Skip to content

Commit

Permalink
Update to 0.8.2
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ryoon committed Jul 5, 2013
1 parent d794c23 commit bb233ca
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 29 deletions.
5 changes: 2 additions & 3 deletions audio/libmp3splt/Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# $NetBSD: Makefile,v 1.11 2012/09/12 00:24:42 asau Exp $
# $NetBSD: Makefile,v 1.12 2013/07/05 16:12:30 ryoon Exp $
#

DISTNAME= libmp3splt-0.7
PKGREVISION= 1
DISTNAME= libmp3splt-0.8.2
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mp3splt/}

Expand Down
18 changes: 10 additions & 8 deletions audio/libmp3splt/PLIST
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
@comment $NetBSD: PLIST,v 1.6 2011/10/21 20:51:50 ryoon Exp $
@comment $NetBSD: PLIST,v 1.7 2013/07/05 16:12:30 ryoon Exp $
include/libmp3splt/mp3splt.h
include/libmp3splt/version.h
lib/libmp3splt.la
lib/libmp3splt/libsplt_mp3.la
lib/libmp3splt/libsplt_ogg.la
share/aclocal/mp3splt.m4
share/locale/cs/LC_MESSAGES/libmp3splt.mo
share/locale/de_DE/LC_MESSAGES/libmp3splt.mo
share/locale/es/LC_MESSAGES/libmp3splt.mo
share/locale/fr_FR/LC_MESSAGES/libmp3splt.mo
lib/libmp3splt0/libsplt_mp3.la
lib/libmp3splt0/libsplt_ogg.la
lib/pkgconfig/libmp3splt.pc
share/locale/cs/LC_MESSAGES/libmp3splt0.mo
share/locale/de_DE/LC_MESSAGES/libmp3splt0.mo
share/locale/es/LC_MESSAGES/libmp3splt0.mo
share/locale/fr_FR/LC_MESSAGES/libmp3splt0.mo
share/locale/hr/LC_MESSAGES/libmp3splt0.mo
6 changes: 3 additions & 3 deletions audio/libmp3splt/buildlink3.mk
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# $NetBSD: buildlink3.mk,v 1.5 2009/12/15 21:30:53 joerg Exp $
# $NetBSD: buildlink3.mk,v 1.6 2013/07/05 16:12:30 ryoon Exp $

BUILDLINK_TREE+= libmp3splt

.if !defined(LIBMP3SPLT_BUILDLINK3_MK)
LIBMP3SPLT_BUILDLINK3_MK:=

BUILDLINK_API_DEPENDS.libmp3splt+= libmp3splt>=0.5.1
BUILDLINK_ABI_DEPENDS.libmp3splt+= libmp3splt>=0.5.6nb1
BUILDLINK_API_DEPENDS.libmp3splt+= libmp3splt>=0.8.2
BUILDLINK_ABI_DEPENDS.libmp3splt+= libmp3splt>=0.8.2
BUILDLINK_PKGSRCDIR.libmp3splt?= ../../audio/libmp3splt
###
### XXX libmad and libvorbis are needed only for headers.
Expand Down
11 changes: 6 additions & 5 deletions audio/libmp3splt/distinfo
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
$NetBSD: distinfo,v 1.6 2011/10/21 20:51:50 ryoon Exp $
$NetBSD: distinfo,v 1.7 2013/07/05 16:12:30 ryoon Exp $

SHA1 (libmp3splt-0.7.tar.gz) = 8774c0ddc4ae3dfb468e2f991c918a09aa763e8f
RMD160 (libmp3splt-0.7.tar.gz) = 69d694fd2e491485d634c55b7175ea3f24eaf7e6
Size (libmp3splt-0.7.tar.gz) = 628384 bytes
SHA1 (patch-aa) = bad2ab75055c3f2a49edbfbd6fb35c29b51bcbcd
SHA1 (libmp3splt-0.8.2.tar.gz) = 5c8539391e26d047c30360b1dde2c08e6a02061f
RMD160 (libmp3splt-0.8.2.tar.gz) = e2f1930248e3b8d4cd80739a1e2c661ba025f2a6
Size (libmp3splt-0.8.2.tar.gz) = 671071 bytes
SHA1 (patch-aa) = 972a873d88848ec70eff330201398cc50775239b
SHA1 (patch-src_socket__manager.c) = 66254075e2a4c9303e8879a932add7d9886eeb87
20 changes: 10 additions & 10 deletions audio/libmp3splt/patches/patch-aa
Original file line number Diff line number Diff line change
@@ -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')
{

0 comments on commit bb233ca

Please sign in to comment.