ogg vorbis recording to only a file caused a segfault. now fixed

This commit is contained in:
darkeye 2004-02-15 13:07:42 +00:00
parent 3fb455d1b7
commit 76644f3692
4 changed files with 10 additions and 1 deletions

View File

@ -20,4 +20,5 @@ with contributions by:
Christian Forster <forster@like.e-technik.uni-erlangen.de> Christian Forster <forster@like.e-technik.uni-erlangen.de>
John Deeny <taqueso@dilapidated.org> John Deeny <taqueso@dilapidated.org>
Robert Lunnon <bobl@optushome.com.au> Robert Lunnon <bobl@optushome.com.au>
Enrico Ardizzoni <craken@users.sourceforge.net>

View File

@ -8,6 +8,8 @@ DarkIce next release
o removed _X and _Y symbols from aflibConverter files, which caused o removed _X and _Y symbols from aflibConverter files, which caused
a naming collision on Solaris. thanks to Robert Lunnon, a naming collision on Solaris. thanks to Robert Lunnon,
<bobl@optushome.com.au> <bobl@optushome.com.au>
o bug fix: ogg vorbis recording to only a file caused a segfault.
now fixed, thanks to Enrico Ardizzoni <craken@users.sourceforge.net>
07-01-2004: DarkIce 0.13.2 released 07-01-2004: DarkIce 0.13.2 released

View File

@ -88,6 +88,7 @@ Developed with contributions by
Christian Forster <forster@like.e-technik.uni-erlangen.de> Christian Forster <forster@like.e-technik.uni-erlangen.de>
John Deeny <taqueso@dilapidated.org> John Deeny <taqueso@dilapidated.org>
Robert Lunnon <bobl@optushome.com.au> Robert Lunnon <bobl@optushome.com.au>
Enrico Ardizzoni <craken@users.sourceforge.net>
.SH LINKS .SH LINKS
Project homepage: Project homepage:

View File

@ -190,7 +190,9 @@ VorbisLibEncoder :: open ( void )
vorbis_comment_init( &vorbisComment); vorbis_comment_init( &vorbisComment);
// Add comment to vorbis headers to show title in players // Add comment to vorbis headers to show title in players
// stupid cast to (char*) because of stupid vorbis API // stupid cast to (char*) because of stupid vorbis API
if ( sink->getName() ) {
vorbis_comment_add_tag(&vorbisComment, "TITLE", (char*)sink->getName()); vorbis_comment_add_tag(&vorbisComment, "TITLE", (char*)sink->getName());
}
// create the vorbis stream headers and send them to the underlying sink // create the vorbis stream headers and send them to the underlying sink
ogg_packet header; ogg_packet header;
@ -373,6 +375,9 @@ VorbisLibEncoder :: close ( void ) throw ( Exception )
$Source$ $Source$
$Log$ $Log$
Revision 1.18 2004/02/15 13:07:42 darkeye
ogg vorbis recording to only a file caused a segfault. now fixed
Revision 1.17 2003/02/09 13:15:57 darkeye Revision 1.17 2003/02/09 13:15:57 darkeye
added feature for setting the TITLE comment field for vorbis streams added feature for setting the TITLE comment field for vorbis streams