2013-01-24 15:44:19 +00:00
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<title>vorbisfile - seeking_test.c</title>
|
|
|
|
<link rel=stylesheet href="style.css" type="text/css">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body bgcolor=white text=black link="#5555ff" alink="#5555ff" vlink="#5555ff">
|
|
|
|
<table border=0 width=100%>
|
|
|
|
<tr>
|
|
|
|
<td><p class=tiny>Vorbisfile documentation</p></td>
|
|
|
|
<td align=right><p class=tiny>vorbisfile version 1.3.2 - 20101101</p></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<h1>seeking_test.c</h1>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
The example program source:
|
|
|
|
|
|
|
|
<br><br>
|
|
|
|
<table border=0 width=100% color=black cellspacing=0 cellpadding=7>
|
|
|
|
<tr bgcolor=#cccccc>
|
|
|
|
<td>
|
|
|
|
<pre><b>
|
|
|
|
|
2015-01-24 18:58:23 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2013-01-24 15:44:19 +00:00
|
|
|
#include "vorbis/codec.h"
|
|
|
|
#include "vorbis/vorbisfile.h"
|
|
|
|
|
|
|
|
int main(){
|
|
|
|
OggVorbis_File ov;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
#ifdef _WIN32 /* We need to set stdin to binary mode under Windows */
|
|
|
|
_setmode( _fileno( stdin ), _O_BINARY );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* open the file/pipe on stdin */
|
2015-01-24 18:58:23 +00:00
|
|
|
if(ov_open_callbacks(stdin,&ov,NULL,-1,OV_CALLBACKS_NOCLOSE)==-1){
|
2013-01-24 15:44:19 +00:00
|
|
|
printf("Could not open input as an OggVorbis file.\n\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* print details about each logical bitstream in the input */
|
2015-01-24 18:58:23 +00:00
|
|
|
if(ov_seekable(&ov)){
|
|
|
|
double length=ov_time_total(&ov,-1);
|
2013-01-24 15:44:19 +00:00
|
|
|
printf("testing seeking to random places in %g seconds....\n",length);
|
2015-01-24 18:58:23 +00:00
|
|
|
for(i=0;i<100;i++){
|
2013-01-24 15:44:19 +00:00
|
|
|
double val=(double)rand()/RAND_MAX*length;
|
2015-01-24 18:58:23 +00:00
|
|
|
ov_time_seek(&ov,val);
|
2013-01-24 15:44:19 +00:00
|
|
|
printf("\r\t%d [%gs]... ",i,val);
|
|
|
|
fflush(stdout);
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("\r \nOK.\n\n");
|
|
|
|
}else{
|
|
|
|
printf("Standard input was not seekable.\n");
|
|
|
|
}
|
|
|
|
|
2015-01-24 18:58:23 +00:00
|
|
|
ov_clear(&ov);
|
2013-01-24 15:44:19 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
</b></pre>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
<br><br>
|
|
|
|
<hr noshade>
|
|
|
|
<table border=0 width=100%>
|
|
|
|
<tr valign=top>
|
|
|
|
<td><p class=tiny>copyright © 2000-2010 Xiph.Org</p></td>
|
|
|
|
<td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/index.html">Ogg Vorbis</a></p></td>
|
|
|
|
</tr><tr>
|
|
|
|
<td><p class=tiny>Vorbisfile documentation</p></td>
|
|
|
|
<td align=right><p class=tiny>vorbisfile version 1.3.2 - 20101101</p></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|