Displaying 2 results from an estimated 2 matches for "psourc".
Did you mean:
sourc
2010 Jun 11
0
Can't run amcap.exe with webcam
...f868 00000000 00000000
0x0062e27c: 7bcb4ded 7bcb4dc6 00000001 00000000
0x0062e28c: 0062e344 00110000 00000010 6a5deff4
0x0062e29c: 00000000 3a5a2934 00000000 3a5a2934
0x0062e2ac: 3a59a3c8 3a599f02 00000000 7bcb4dc6
Backtrace:
=>0 0x3a590b14 fnCaptureGraphBuilder2_FindPin+0x34(iface=0x13f868, pSource=(nil), pindir=PINDIR_INPUT, pCategory=0x41e450, pType=0x41f8c0, fUnconnected=0x0001, num=0, ppPin=0x62e344) [/build/buildd/wine1.2-1.1.42/dlls/qcap/capturegraph.c:404] in qcap (0x0062e364)
1 0x3a5910ac fnCaptureGraphBuilder2_RenderStream+0xdb(iface=0x13f868, pCategory=0x41e450, pType=0x41f8c0, p...
2000 Aug 07
1
Starting at square one with Vorbis...
...e have a generic streamer that
writes raw digital sound data into the primary sound
buffer. We plug sound sources (e.g. wav files, PCM files)
into this streamer by having the sound sources have
an interface something like this:
class SourceDataSourceInterface{
virtual bool Init(char* pSource) = 0;
virtual bool Shutdown() = 0;
virtual bool ReadFull(char** pDest, int* size) = 0;
virtual int ReadPart(char* pDest, int size) = 0;
virtual void* GetFormat() = 0;
};
I want to write some code that can convert Vorbis file
data to raw digital data that...