From: Segher Boessenkool Date: Wed, 23 Jan 2002 16:04:55 +0000 (+0000) Subject: All comments should be old-style ( /* ... */ ) comments. X-Git-Tag: v1.3.3~813 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dcdb1fdafe036c4777fb58c599cebab1d4a33553;p=platform%2Fupstream%2Flibvorbis.git All comments should be old-style ( /* ... */ ) comments. Closes #134. svn path=/trunk/vorbis/; revision=2980 --- diff --git a/examples/encoder_example.c b/examples/encoder_example.c index 137f9cc..12ed716 100644 --- a/examples/encoder_example.c +++ b/examples/encoder_example.c @@ -11,7 +11,7 @@ ******************************************************************** function: simple example encoder - last mod: $Id: encoder_example.c,v 1.35 2001/12/29 17:47:16 cwolf Exp $ + last mod: $Id: encoder_example.c,v 1.36 2002/01/23 16:04:55 segher Exp $ ********************************************************************/ @@ -97,7 +97,7 @@ int main(){ /* (quality mode .4: 44kHz stereo coupled, roughly 128kbps VBR) */ vorbis_info_init(&vi); - vorbis_encode_init_vbr(&vi,2,44100,.1); // max compression + vorbis_encode_init_vbr(&vi,2,44100,.1); /* max compression */ /* add a comment */ vorbis_comment_init(&vc);