comparison loader/dshow/DS_AudioDecoder.c @ 8292:9533c26c0806

avifile sync (mostly cosmetics)
author arpi
date Tue, 26 Nov 2002 21:00:20 +0000
parents 3898967fcc96
children fb88ccbc5ccc
comparison
equal deleted inserted replaced
8291:abe95dde3223 8292:9533c26c0806
28 #include <string.h> 28 #include <string.h>
29 #include <stdio.h> 29 #include <stdio.h>
30 #include <stdlib.h> 30 #include <stdlib.h>
31 31
32 #define __MODULE__ "DirectShow audio decoder" 32 #define __MODULE__ "DirectShow audio decoder"
33 const GUID FORMAT_WaveFormatEx = {
34 0x05589f81, 0xc356, 0x11CE,
35 { 0xBF, 0x01, 0x00, 0xAA, 0x00, 0x55, 0x59, 0x5A }
36 };
37 const GUID MEDIATYPE_Audio = {
38 0x73647561, 0x0000, 0x0010,
39 { 0x80, 0x00, 0x00, 0xAA, 0x00, 0x38, 0x9B, 0x71 }
40 };
41 const GUID MEDIASUBTYPE_PCM = {
42 0x00000001, 0x0000, 0x0010,
43 { 0x80, 0x00, 0x00, 0xAA, 0x00, 0x38, 0x9B, 0x71 }
44 };
45 33
46 typedef long STDCALL (*GETCLASS) (GUID*, GUID*, void**); 34 typedef long STDCALL (*GETCLASS) (GUID*, GUID*, void**);
47 35
48 DS_AudioDecoder * DS_AudioDecoder_Open(char* dllname, GUID* guid, WAVEFORMATEX* wf) 36 DS_AudioDecoder * DS_AudioDecoder_Open(char* dllname, GUID* guid, WAVEFORMATEX* wf)
49 //DS_AudioDecoder * DS_AudioDecoder_Create(const CodecInfo * info, const WAVEFORMATEX* wf) 37 //DS_AudioDecoder * DS_AudioDecoder_Create(const CodecInfo * info, const WAVEFORMATEX* wf)