Last time I have posted one question related to writing WAV format to standered out. I got satisfactory answer and I tried the suggested way. Thanks for the same.
Now I want to try the Ogg format output to be written on the standered output. I tried the way I did WAV but I am always getting following error:
jucelib_static_Win32_debug.lib(juce_OggVorbisAudioFormat.obj) : error LNK2005: _bitreverse already defined
The way I am doing is:
I have defined another class TempOggWriter, which is copy of the OggWriter, I have just replaced the âouptutâ which is OutputStream with stdout file handler and using fwrite() to write the data to standered out.
Maybe youâre linking to other libraries that use that symbol.
Perhaps try the amalgamated version?
And surely the sensible way to do what you want would be to write yourself a simple OutputStream class that writes to stdout (probably only about 20 lines of code), and pass that to the normal ogg writer??