# HG changeset patch # User arpi # Date 1008021473 0 # Node ID 9e4e3d2286b2ede5454223e15472b21841506fb0 # Parent 61c392d6316e5c4315ba853c9aa89b5d49afda0f obsoleted files diff -r 61c392d6316e -r 9e4e3d2286b2 loader/dshow/DS_AudioDec.h --- a/loader/dshow/DS_AudioDec.h Mon Dec 10 21:57:53 2001 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,26 +0,0 @@ -/******************************************************** - - DirectShow Audio decoder implementation - Copyright 2000 Eugene Kuznetsov (divx@euro.ru) - Converted C++ --> C :) by A'rpi/ESP-team - -*********************************************************/ - -#ifdef __cplusplus -extern "C" { -#endif /* defined(__cplusplus) */ - -void* DS_AudioDecoder_Open(char* dllname, GUID* guid, WAVEFORMATEX* wf); - -void DS_AudioDecoder_Close(void* _handle); - -int DS_AudioDecoder_GetSrcSize(void* _handle, int dest_size); - -int DS_AudioDecoder_Convert(void* _handle, - unsigned char* in_data, unsigned in_size, - unsigned char* out_data, unsigned out_size, - unsigned* size_read, unsigned* size_written); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* defined(__cplusplus) */ diff -r 61c392d6316e -r 9e4e3d2286b2 loader/dshow/DS_VideoDec.h --- a/loader/dshow/DS_VideoDec.h Mon Dec 10 21:57:53 2001 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,30 +0,0 @@ -/******************************************************** - - DirectShow Video decoder implementation - Copyright 2000 Eugene Kuznetsov (divx@euro.ru) - Converted C++ --> C :) by A'rpi/ESP-team - -*********************************************************/ - -#ifdef __cplusplus -extern "C" { -#endif /* defined(__cplusplus) */ - -void* DS_VideoDecoder_Open(char* dllname, GUID* guid, BITMAPINFOHEADER* format, int flip, int maxauto); - -void DS_VideoDecoder_StartInternal(void* _handle); - -void DS_VideoDecoder_Stop(void* _handle); - -void DS_VideoDecoder_Destroy(void* _handle); - -int DS_VideoDecoder_DecodeInternal(void* _handle, char* src, int size, int is_keyframe, char* dest); - -int DS_VideoDecoder_SetDestFmt(void* _handle, int bits, int csp); - -int DS_VideoDecoder_SetValue(void* _handle, char* name, int value); -int DS_SetAttr_DivX(char* attribute, int value); - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* defined(__cplusplus) */