ogg vorbis recording to only a file caused a segfault. now fixed
This commit is contained in:
parent
3fb455d1b7
commit
76644f3692
|
@ -20,4 +20,5 @@ with contributions by:
|
|||
Christian Forster <forster@like.e-technik.uni-erlangen.de>
|
||||
John Deeny <taqueso@dilapidated.org>
|
||||
Robert Lunnon <bobl@optushome.com.au>
|
||||
Enrico Ardizzoni <craken@users.sourceforge.net>
|
||||
|
||||
|
|
|
@ -8,6 +8,8 @@ DarkIce next release
|
|||
o removed _X and _Y symbols from aflibConverter files, which caused
|
||||
a naming collision on Solaris. thanks to Robert Lunnon,
|
||||
<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
|
||||
|
||||
|
|
|
@ -88,6 +88,7 @@ Developed with contributions by
|
|||
Christian Forster <forster@like.e-technik.uni-erlangen.de>
|
||||
John Deeny <taqueso@dilapidated.org>
|
||||
Robert Lunnon <bobl@optushome.com.au>
|
||||
Enrico Ardizzoni <craken@users.sourceforge.net>
|
||||
|
||||
.SH LINKS
|
||||
Project homepage:
|
||||
|
|
|
@ -190,7 +190,9 @@ VorbisLibEncoder :: open ( void )
|
|||
vorbis_comment_init( &vorbisComment);
|
||||
// Add comment to vorbis headers to show title in players
|
||||
// stupid cast to (char*) because of stupid vorbis API
|
||||
vorbis_comment_add_tag( &vorbisComment, "TITLE", (char*) sink->getName());
|
||||
if ( sink->getName() ) {
|
||||
vorbis_comment_add_tag(&vorbisComment, "TITLE", (char*)sink->getName());
|
||||
}
|
||||
|
||||
// create the vorbis stream headers and send them to the underlying sink
|
||||
ogg_packet header;
|
||||
|
@ -373,6 +375,9 @@ VorbisLibEncoder :: close ( void ) throw ( Exception )
|
|||
$Source$
|
||||
|
||||
$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
|
||||
added feature for setting the TITLE comment field for vorbis streams
|
||||
|
||||
|
|
Loading…
Reference in New Issue