Up to [cvs.netbsd.org] / pkgsrc / audio / darkice
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.12 / (download) - annotate - [select for diffs], Wed Feb 8 00:19:42 2012 UTC (3 months, 1 week ago) by sbd
Branch: MAIN
CVS Tags: pkgsrc-2012Q1-base,
pkgsrc-2012Q1,
HEAD
Changes since 1.11: +2 -2
lines
Diff to previous 1.11 (colored)
Comply the the C++ spec by making a variable that is assigned the result of a strchr(const char *, int c) call a constant. (i.e. use obache@ suggestion as a better way to fix the strchr problem.)
Revision 1.11 / (download) - annotate - [select for diffs], Sat Feb 4 07:53:26 2012 UTC (3 months, 2 weeks ago) by sbd
Branch: MAIN
Changes since 1.10: +2 -2
lines
Diff to previous 1.10 (colored)
Add a cast to a strrchr call.
Revision 1.10 / (download) - annotate - [select for diffs], Sat Feb 4 07:51:28 2012 UTC (3 months, 2 weeks ago) by sbd
Branch: MAIN
Changes since 1.9: +3 -2
lines
Diff to previous 1.9 (colored)
$NetBSD$
--- src/Util.cpp.orig 2005-04-17 10:58:09.000000000 +0000
+++ src/Util.cpp
@@ -288,7 +288,7 @@ Util :: fileAddDate ( const char * str )
strftime( strdate, 128, "[%m-%d-%Y-%H-%M-%S]", localtime (&now));
// search for the part before the extension of the file name
- if ( !(last = strrchr( str, '.')) ) {
+ if ( !(last = (char *) strrchr( str, '.')) ) {
last = (char *) str + strlen( str);
}
Revision 1.9 / (download) - annotate - [select for diffs], Sun Jun 19 04:50:08 2011 UTC (11 months ago) by dholland
Branch: MAIN
CVS Tags: pkgsrc-2011Q4-base,
pkgsrc-2011Q4,
pkgsrc-2011Q3-base,
pkgsrc-2011Q3,
pkgsrc-2011Q2-base,
pkgsrc-2011Q2
Changes since 1.8: +2 -1
lines
Diff to previous 1.8 (colored)
Don't build with -pedantic; it causes 32-bit builds to fail.
Revision 1.8 / (download) - annotate - [select for diffs], Sat Aug 2 17:43:56 2008 UTC (3 years, 9 months ago) by dholland
Branch: MAIN
CVS Tags: pkgsrc-2011Q1-base,
pkgsrc-2011Q1,
pkgsrc-2010Q4-base,
pkgsrc-2010Q4,
pkgsrc-2010Q3-base,
pkgsrc-2010Q3,
pkgsrc-2010Q2-base,
pkgsrc-2010Q2,
pkgsrc-2010Q1-base,
pkgsrc-2010Q1,
pkgsrc-2009Q4-base,
pkgsrc-2009Q4,
pkgsrc-2009Q3-base,
pkgsrc-2009Q3,
pkgsrc-2009Q2-base,
pkgsrc-2009Q2,
pkgsrc-2009Q1-base,
pkgsrc-2009Q1,
pkgsrc-2008Q4-base,
pkgsrc-2008Q4,
pkgsrc-2008Q3-base,
pkgsrc-2008Q3,
cube-native-xorg-base,
cube-native-xorg
Changes since 1.7: +3 -1
lines
Diff to previous 1.7 (colored)
Fix broken amd64 build.
Revision 1.7 / (download) - annotate - [select for diffs], Tue Oct 10 20:09:22 2006 UTC (5 years, 7 months ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2008Q2-base,
pkgsrc-2008Q2,
pkgsrc-2008Q1-base,
pkgsrc-2008Q1,
pkgsrc-2007Q4-base,
pkgsrc-2007Q4,
pkgsrc-2007Q3-base,
pkgsrc-2007Q3,
pkgsrc-2007Q2-base,
pkgsrc-2007Q2,
pkgsrc-2007Q1-base,
pkgsrc-2007Q1,
pkgsrc-2006Q4-base,
pkgsrc-2006Q4,
cwrapper
Changes since 1.6: +2 -1
lines
Diff to previous 1.6 (colored)
Fixed "test ==" and path to the man pages.
Revision 1.6 / (download) - annotate - [select for diffs], Sun May 21 10:27:01 2006 UTC (6 years ago) by xtraeme
Branch: MAIN
CVS Tags: pkgsrc-2006Q3-base,
pkgsrc-2006Q3,
pkgsrc-2006Q2-base,
pkgsrc-2006Q2
Changes since 1.5: +4 -4
lines
Diff to previous 1.5 (colored)
Update to 0.17.1:
o bugfix: automatic reconnect works more reliably
o added check for bufferSecs set to 0
o added realtime parameter to the general section
o added MPEG2 support through the TwoLame library.
o added AAC support through the faac codec, http://www.audiocoding.com
o bug fix: icecast2 sections didn't honor lowpass or highpass filters
when using the mp3 format
Revision 1.5 / (download) - annotate - [select for diffs], Wed Apr 12 21:12:48 2006 UTC (6 years, 1 month ago) by rillig
Branch: MAIN
Changes since 1.4: +4 -5
lines
Diff to previous 1.4 (colored)
Updated darkice to 0.15.
14-04-2005 DarkIce 0.15 released
o ported to OpenBSD and NetBSD, though real-time scheduling not supported,
since it is not implemented in OpenBSD / NetBSD
o added possibility to downsample from stereo to mono when encoding
to Ogg Vorbis, thanks to Deti Fliegl, <deti@fliegl.de>
o added support for Jack inputs, enabling a lot of interesting usage,
including support for MacOS X.
Thanks to Nicholas J. Humfrey <njh@ecs.soton.ac.uk>
o various improvements by Joel Ebel <jbebel@ncsu.edu>
o added option to turn off automatic reconnect feature
o added IPv6 support, thanks to <jochen2@users.sourceforge.net>
Revision 1.4 / (download) - annotate - [select for diffs], Fri Mar 11 21:27:17 2005 UTC (7 years, 2 months ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2006Q1-base,
pkgsrc-2006Q1,
pkgsrc-2005Q4-base,
pkgsrc-2005Q4,
pkgsrc-2005Q3-base,
pkgsrc-2005Q3,
pkgsrc-2005Q2-base,
pkgsrc-2005Q2,
pkgsrc-2005Q1-base,
pkgsrc-2005Q1
Changes since 1.3: +2 -1
lines
Diff to previous 1.3 (colored)
This patch disables the priority scheduling if it is not available. Needed at least for NetBSD-1.6.2. Approved by wiz.
Revision 1.3 / (download) - annotate - [select for diffs], Wed Feb 23 20:39:44 2005 UTC (7 years, 2 months ago) by agc
Branch: MAIN
Changes since 1.2: +2 -1
lines
Diff to previous 1.2 (colored)
Add RMD160 digests to the SHA1 ones.
Revision 1.2 / (download) - annotate - [select for diffs], Mon Feb 16 09:51:47 2004 UTC (8 years, 3 months ago) by xtraeme
Branch: MAIN
CVS Tags: pkgsrc-2004Q4-base,
pkgsrc-2004Q4,
pkgsrc-2004Q3-base,
pkgsrc-2004Q3,
pkgsrc-2004Q2-base,
pkgsrc-2004Q2,
pkgsrc-2004Q1-base,
pkgsrc-2004Q1
Changes since 1.1: +3 -6
lines
Diff to previous 1.1 (colored)
bl3ify and upgrade darkice to 0.14. This release adds ALSA support and support for downsampling streams from stereo to mono when streaming in MP3 to an icecast 2 server. There is a bugfix for conflicting symbols _X and _Y on Solaris, and a bugfix for a segfault caused when saving an Ogg Vorbis stream to a file.
Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Fri Jan 9 17:23:44 2004 UTC (8 years, 4 months ago) by xtraeme
Branch: TNF
CVS Tags: pkgsrc-base
Changes since 1.1: +0 -0
lines
Diff to previous 1.1 (colored)
Initial import of darkice-0.13.2 from pkgsrc-wip. DarkIce is an IceCast, IceCast2 and ShoutCast live audio streamer. It takes audio input from a sound card, encodes it into mp3 and/or Ogg Vorbis, and sends the streams to one or more IceCast, ShoutCast and/or IceCast2 servers. DarkIce uses lame as a shared object as its mp3 encoder, and the Ogg Vorbis libs as its Ogg Vorbis encoder.
Revision 1.1 / (download) - annotate - [select for diffs], Fri Jan 9 17:23:44 2004 UTC (8 years, 4 months ago) by xtraeme
Branch: MAIN
Initial revision