00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include <stdio.h>
00023 #include <stdlib.h>
00024 #include <vorbis/ivorbiscodec.h>
00025 #include <vorbis/ivorbisfile.h>
00026
00027 #ifdef _WIN32
00028 #include <io.h>
00029 #include <fcntl.h>
00030 #endif
00031
00032 char pcmout[4096];
00033
00034 int main(){
00035 OggVorbis_File vf;
00036 int eof=0;
00037 int current_section;
00038
00039 #ifdef _WIN32
00040
00041
00042 _setmode( _fileno( stdin ), _O_BINARY );
00043 _setmode( _fileno( stdout ), _O_BINARY );
00044 #endif
00045
00046 if(ov_open(stdin, &vf, NULL, 0) < 0) {
00047 fprintf(stderr,"Input does not appear to be an Ogg bitstream.\n");
00048 exit(1);
00049 }
00050
00051
00052
00053 {
00054 char **ptr=ov_comment(&vf,-1)->user_comments;
00055 vorbis_info *vi=ov_info(&vf,-1);
00056 while(*ptr){
00057 fprintf(stderr,"%s\n",*ptr);
00058 ++ptr;
00059 }
00060 fprintf(stderr,"\nBitstream is %d channel, %ldHz\n",vi->channels,vi->rate);
00061 fprintf(stderr,"\nDecoded length: %ld samples\n",
00062 (long)ov_pcm_total(&vf,-1));
00063 fprintf(stderr,"Encoded by: %s\n\n",ov_comment(&vf,-1)->vendor);
00064 }
00065
00066 while(!eof){
00067 long ret=ov_read(&vf,pcmout,sizeof(pcmout),¤t_section);
00068 if (ret == 0) {
00069
00070 eof=1;
00071 } else if (ret < 0) {
00072
00073
00074 } else {
00075
00076
00077 fwrite(pcmout,1,ret,stdout);
00078 }
00079 }
00080
00081
00082 ov_clear(&vf);
00083
00084 fprintf(stderr,"Done.\n");
00085 return(0);
00086 }