1 /********************************************************************
3 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
4 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
5 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
6 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
8 * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2007 *
9 * by the Xiph.Org Foundation http://www.xiph.org/ *
11 ********************************************************************
13 function: illustrate seeking, and test it too
14 last mod: $Id: seeking_example.c 16037 2009-05-26 21:10:58Z xiphmont $
16 ********************************************************************/
20 #include "vorbis/codec.h"
21 #include "vorbis/vorbisfile.h"
23 #ifdef _WIN32 /* We need the following two to set stdin/stdout to binary */
28 void _verify(OggVorbis_File
*ov
,
29 ogg_int64_t val
,ogg_int64_t pcmval
,double timeval
,
30 ogg_int64_t pcmlength
,
38 /* verify the raw position, the pcm position and position decode */
39 if(val
!=-1 && ov_raw_tell(ov
)<val
){
40 fprintf(stderr
,"raw position out of tolerance: requested %ld, got %ld\n",
41 (long)val
,(long)ov_raw_tell(ov
));
44 if(pcmval
!=-1 && ov_pcm_tell(ov
)>pcmval
){
45 fprintf(stderr
,"pcm position out of tolerance: requested %ld, got %ld\n",
46 (long)pcmval
,(long)ov_pcm_tell(ov
));
49 if(timeval
!=-1 && ov_time_tell(ov
)>timeval
){
50 fprintf(stderr
,"time position out of tolerance: requested %f, got %f\n",
51 timeval
,ov_time_tell(ov
));
55 if(pos
<0 || pos
>pcmlength
){
56 fprintf(stderr
,"pcm position out of bounds: got %ld\n",(long)pos
);
59 bread
=ov_read(ov
,buffer
,4096,1,1,1,&dummy
);
61 if(buffer
[j
]!=bigassbuffer
[j
+pos
*2]){
62 fprintf(stderr
,"data position after seek doesn't match pcm position\n");
65 FILE *f
=fopen("a.m","w");
66 for(j
=0;j
<bread
;j
++)fprintf(f
,"%d\n",(int)buffer
[j
]);
69 for(j
=0;j
<bread
;j
++)fprintf(f
,"%d\n",(int)bigassbuffer
[j
+pos
*2]);
81 ogg_int64_t pcmlength
;
86 #ifdef _WIN32 /* We need to set stdin/stdout to binary mode. Damn windows. */
87 _setmode( _fileno( stdin
), _O_BINARY
);
91 /* open the file/pipe on stdin */
92 if(ov_open_callbacks(stdin
,&ov
,NULL
,-1,OV_CALLBACKS_NOCLOSE
)<0){
93 fprintf(stderr
,"Could not open input as an OggVorbis file.\n\n");
99 /* to simplify our own lives, we want to assume the whole file is
100 stereo. Verify this to avoid potentially mystifying users
101 (pissing them off is OK, just don't confuse them) */
102 for(i
=0;i
<ov
.links
;i
++){
103 vorbis_info
*vi
=ov_info(&ov
,i
);
105 fprintf(stderr
,"Sorry; right now seeking_test can only use Vorbis files\n"
106 "that are entirely stereo.\n\n");
111 /* because we want to do sample-level verification that the seek
112 does what it claimed, decode the entire file into memory */
113 pcmlength
=ov_pcm_total(&ov
,-1);
114 timelength
=ov_time_total(&ov
,-1);
115 bigassbuffer
=malloc(pcmlength
*2); /* w00t */
117 while(i
<pcmlength
*2){
118 int ret
=ov_read(&ov
,bigassbuffer
+i
,pcmlength
*2-i
,1,1,1,&dummy
);
125 fprintf(stderr
,"\rloading.... [%ld left] ",
126 (long)(pcmlength
*2-i
));
130 ogg_int64_t length
=ov
.end
;
131 fprintf(stderr
,"\rtesting raw seeking to random places in %ld bytes....\n",
135 ogg_int64_t val
=(double)rand()/RAND_MAX
*length
;
136 fprintf(stderr
,"\r\t%d [raw position %ld]... ",i
,(long)val
);
137 ret
=ov_raw_seek(&ov
,val
);
139 fprintf(stderr
,"seek failed: %d\n",ret
);
143 _verify(&ov
,val
,-1,-1.,pcmlength
,bigassbuffer
);
148 fprintf(stderr
,"\r");
150 fprintf(stderr
,"testing pcm page seeking to random places in %ld samples....\n",
154 ogg_int64_t val
=(double)rand()/RAND_MAX
*pcmlength
;
155 fprintf(stderr
,"\r\t%d [pcm position %ld]... ",i
,(long)val
);
156 ret
=ov_pcm_seek_page(&ov
,val
);
158 fprintf(stderr
,"seek failed: %d\n",ret
);
162 _verify(&ov
,-1,val
,-1.,pcmlength
,bigassbuffer
);
167 fprintf(stderr
,"\r");
169 fprintf(stderr
,"testing pcm exact seeking to random places in %ld samples....\n",
173 ogg_int64_t val
=(double)rand()/RAND_MAX
*pcmlength
;
174 fprintf(stderr
,"\r\t%d [pcm position %ld]... ",i
,(long)val
);
175 ret
=ov_pcm_seek(&ov
,val
);
177 fprintf(stderr
,"seek failed: %d\n",ret
);
180 if(ov_pcm_tell(&ov
)!=val
){
181 fprintf(stderr
,"Declared position didn't perfectly match request: %ld != %ld\n",
182 (long)val
,(long)ov_pcm_tell(&ov
));
186 _verify(&ov
,-1,val
,-1.,pcmlength
,bigassbuffer
);
191 fprintf(stderr
,"\r");
193 fprintf(stderr
,"testing time page seeking to random places in %f seconds....\n",
197 double val
=(double)rand()/RAND_MAX
*timelength
;
198 fprintf(stderr
,"\r\t%d [time position %f]... ",i
,val
);
199 ret
=ov_time_seek_page(&ov
,val
);
201 fprintf(stderr
,"seek failed: %d\n",ret
);
205 _verify(&ov
,-1,-1,val
,pcmlength
,bigassbuffer
);
210 fprintf(stderr
,"\r");
212 fprintf(stderr
,"testing time exact seeking to random places in %f seconds....\n",
216 double val
=(double)rand()/RAND_MAX
*timelength
;
217 fprintf(stderr
,"\r\t%d [time position %f]... ",i
,val
);
218 ret
=ov_time_seek(&ov
,val
);
220 fprintf(stderr
,"seek failed: %d\n",ret
);
223 if(ov_time_tell(&ov
)<val
-1 || ov_time_tell(&ov
)>val
+1){
224 fprintf(stderr
,"Declared position didn't perfectly match request: %f != %f\n",
225 val
,ov_time_tell(&ov
));
229 _verify(&ov
,-1,-1,val
,pcmlength
,bigassbuffer
);
234 fprintf(stderr
,"\r \nOK.\n\n");
238 fprintf(stderr
,"Standard input was not seekable.\n");