From 8e94244f86e657e4113e35438e59cf5771882b25 Mon Sep 17 00:00:00 2001 From: Aki Date: Sun, 3 Mar 2024 12:51:03 +0100 Subject: libogg and libvorbis are no longer part of this source tree --- contrib/vorbis/doc/vorbisfile/seeking_test_c.html | 86 ----------------------- 1 file changed, 86 deletions(-) delete mode 100644 contrib/vorbis/doc/vorbisfile/seeking_test_c.html (limited to 'contrib/vorbis/doc/vorbisfile/seeking_test_c.html') diff --git a/contrib/vorbis/doc/vorbisfile/seeking_test_c.html b/contrib/vorbis/doc/vorbisfile/seeking_test_c.html deleted file mode 100644 index eb10a98..0000000 --- a/contrib/vorbis/doc/vorbisfile/seeking_test_c.html +++ /dev/null @@ -1,86 +0,0 @@ - - - -vorbisfile - seeking_test.c - - - - - - - - - -

Vorbisfile documentation

vorbisfile version 1.3.2 - 20101101

- -

seeking_test.c

- -

-The example program source: - -

- - - - -
-

-
-#include <stdlib.h>
-#include <stdio.h>
-#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 */
-  if(ov_open_callbacks(stdin,&ov,NULL,-1,OV_CALLBACKS_NOCLOSE)==-1){
-    printf("Could not open input as an OggVorbis file.\n\n");
-    exit(1);
-  }
-  
-  /* print details about each logical bitstream in the input */
-  if(ov_seekable(&ov)){
-    double length=ov_time_total(&ov,-1);
-    printf("testing seeking to random places in %g seconds....\n",length);
-    for(i=0;i<100;i++){
-      double val=(double)rand()/RAND_MAX*length;
-      ov_time_seek(&ov,val);
-      printf("\r\t%d [%gs]...     ",i,val);
-      fflush(stdout);
-    }
-    
-    printf("\r                                   \nOK.\n\n");
-  }else{
-    printf("Standard input was not seekable.\n");
-  }
-
-  ov_clear(&ov);
-  return 0;
-}
-
-
-
- - -

-


- - - - - - - - -

copyright © 2000-2010 Xiph.Org

Ogg Vorbis

Vorbisfile documentation

vorbisfile version 1.3.2 - 20101101

- - - - -- cgit v1.1