[xiph-cvs] r6498 - trunk/vorbis/doc/vorbisfile
giles at xiph.org
giles at xiph.org
Wed Apr 7 16:01:55 PDT 2004
Author: giles
Date: 2004-04-07 19:01:55 -0400 (Wed, 07 Apr 2004)
New Revision: 6498
Modified:
trunk/vorbis/doc/vorbisfile/chaining_example_c.html
trunk/vorbis/doc/vorbisfile/chainingexample.html
Log:
Properly escape the example C code in the chaining example html.
<p>Modified: trunk/vorbis/doc/vorbisfile/chaining_example_c.html
===================================================================
--- trunk/vorbis/doc/vorbisfile/chaining_example_c.html 2004-04-07 03:18:30 UTC (rev 6497)
+++ trunk/vorbis/doc/vorbisfile/chaining_example_c.html 2004-04-07 23:01:55 UTC (rev 6498)
@@ -22,45 +22,45 @@
<table border=0 width=100% color=black cellspacing=0 cellpadding=7>
<tr bgcolor=#cccccc>
<td>
-<pre><b>
+<pre width="80"><b>
-#include <vorbis/codec.h>
-#include <vorbis/vorbisfile.h>
+<font color="#A020F0">#include <vorbis/codec.h></font>
+<font color="#A020F0">#include <vorbis/vorbisfile.h></font>
-int main(){
+<strong><font color="#4169E1"><a name="main"></a>int main()</font></strong>{
OggVorbis_File ov;
int i;
- /* open the file/pipe on stdin */
- if(ov_open(stdin,&ov,NULL,-1)<0){
- printf("Could not open input as an OggVorbis file.\n\n");
+ <font color="#B22222">/* open the file/pipe on stdin */</font>
+ <font color="#4169E1">if</font>(ov_open(stdin,&ov,NULL,-1)<0){
+ printf(<font color="#666666">"Could not open input as an OggVorbis file.\n\n"</font>);
exit(1);
}
- /* print details about each logical bitstream in the input */
- if(ov_seekable(&ov)){
- printf("Input bitstream contained %ld logical bitstream section(s).\n",
- ov_streams(&ov));
- printf("Total bitstream playing time: %ld seconds\n\n",
- (long)ov_time_total(&ov,-1));
+ <font color="#B22222">/* print details about each logical bitstream in the input */</font>
+ <font color="#4169E1">if</font>(ov_seekable(&ov)){
+ printf(<font color="#666666">"Input bitstream contained %ld logical bitstream section(s).\n"</font>,
+ ov_streams(&ov));
+ printf(<font color="#666666">"Total bitstream playing time: %ld seconds\n\n"</font>,
+ (long)ov_time_total(&ov,-1));
- }else{
- printf("Standard input was not seekable.\n"
- "First logical bitstream information:\n\n");
+ }<font color="#4169E1">else</font>{
+ printf(<font color="#666666">"Standard input was not seekable.\n"</font>
+ <font color="#666666">"First logical bitstream information:\n\n"</font>);
}
- for(i=0;i<ov_streams(&ov);i++){
- vorbis_info *vi=ov_info(&ov,i);
- printf("\tlogical bitstream section %d information:\n",i+1);
- printf("\t\t%ldHz %d channels bitrate %ldkbps serial number=%ld\n",
- vi->rate,vi->channels,ov_bitrate(&ov,i)/1000,
- ov_serialnumber(&ov,i));
- printf("\t\tcompressed length: %ld bytes ",(long)(ov_raw_total(&ov,i)));
- printf(" play time: %lds\n",(long)ov_time_total(&ov,i));
+ <font color="#4169E1">for</font>(i=0;i<ov_streams(&ov);i++){
+ vorbis_info *vi=ov_info(&ov,i);
+ printf(<font color="#666666">"\tlogical bitstream section %d information:\n"</font>,i+1);
+ printf(<font color="#666666">"\t\t%ldHz %d channels bitrate %ldkbps serial number=%ld\n"</font>,
+ vi->rate,vi->channels,ov_bitrate(&ov,i)/1000,
+ ov_serialnumber(&ov,i));
+ printf(<font color="#666666">"\t\tcompressed length: %ld bytes "</font>,(long)(ov_raw_total(&ov,i)));
+ printf(<font color="#666666">" play time: %lds\n"</font>,(long)ov_time_total(&ov,i));
}
- ov_clear(&ov);
- return 0;
+ ov_clear(&ov);
+ <font color="#4169E1">return</font> 0;
}
</b></pre>
@@ -73,7 +73,7 @@
<hr noshade>
<table border=0 width=100%>
<tr valign=top>
-<td><p class=tiny>copyright © 2003 Xiph.org</p></td>
+<td><p class=tiny>copyright © 2004 Xiph.org</p></td>
<td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/index.html">Ogg Vorbis</a><br><a href="mailto:team at vorbis.org">team at vorbis.org</a></p></td>
</tr><tr>
<td><p class=tiny>Vorbisfile documentation</p></td>
Modified: trunk/vorbis/doc/vorbisfile/chainingexample.html
===================================================================
--- trunk/vorbis/doc/vorbisfile/chainingexample.html 2004-04-07 03:18:30 UTC (rev 6497)
+++ trunk/vorbis/doc/vorbisfile/chainingexample.html 2004-04-07 23:01:55 UTC (rev 6498)
@@ -59,7 +59,7 @@
<tr bgcolor=#cccccc>
<td>
<pre><b>
- if(ov_open(stdin,&ov,NULL,-1)<0){
+ if(ov_open(stdin,&ov,NULL,-1)>0){
printf("Could not open input as an OggVorbis file.\n\n");
exit(1);
}
@@ -81,11 +81,11 @@
<tr bgcolor=#cccccc>
<td>
<pre><b>
- if(ov_seekable(&ov)){
+ if(ov_seekable(&ov)){
printf("Input bitstream contained %ld logical bitstream section(s).\n",
- ov_streams(&ov));
+ ov_streams(&ov));
printf("Total bitstream playing time: %ld seconds\n\n",
- (long)ov_time_total(&ov,-1));
+ (long)ov_time_total(&ov,-1));
}else{
printf("Standard input was not seekable.\n"
@@ -108,14 +108,14 @@
<tr bgcolor=#cccccc>
<td>
<pre><b>
- for(i=0;i<ov_streams(&ov);i++){
- vorbis_info *vi=ov_info(&ov,i);
+ for(i=0;i<ov_streams(&ov);i++){
+ vorbis_info *vi=ov_info(&ov,i);
printf("\tlogical bitstream section %d information:\n",i+1);
printf("\t\t%ldHz %d channels bitrate %ldkbps serial number=%ld\n",
- vi->rate,vi->channels,ov_bitrate(&ov,i)/1000,
- ov_serialnumber(&ov,i));
- printf("\t\tcompressed length: %ld bytes ",(long)(ov_raw_total(&ov,i)));
- printf(" play time: %lds\n",(long)ov_time_total(&ov,i));
+ vi->rate,vi->channels,ov_bitrate(&ov,i)/1000,
+ ov_serialnumber(&ov,i));
+ printf("\t\tcompressed length: %ld bytes ",(long)(ov_raw_total(&ov,i)));
+ printf(" play time: %lds\n",(long)ov_time_total(&ov,i));
}
</b></pre>
</td>
@@ -129,7 +129,7 @@
<tr bgcolor=#cccccc>
<td>
<pre><b>
- ov_clear(&ov);
+ ov_clear(&ov);
return 0;
}
</b></pre>
@@ -145,7 +145,7 @@
<hr noshade>
<table border=0 width=100%>
<tr valign=top>
-<td><p class=tiny>copyright © 2003 Xiph.org</p></td>
+<td><p class=tiny>copyright © 2004 Xiph.org</p></td>
<td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/">Ogg Vorbis</a><br><a href="mailto:team at vorbis.org">team at vorbis.org</a></p></td>
</tr><tr>
<td><p class=tiny>Vorbisfile documentation</p></td>
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
More information about the commits
mailing list