summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-10 21:57:53 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-10 21:57:53 +0000
commiteec59c47ac3cb54c04d5a8418519c1a916ed89c7 (patch)
tree694d733d5b1e858f08aa52c16a29de5589f06c69 /loader
parentcc4dea654d70255406df7c7482242737420adc1a (diff)
downloadmpv-eec59c47ac3cb54c04d5a8418519c1a916ed89c7.tar.bz2
mpv-eec59c47ac3cb54c04d5a8418519c1a916ed89c7.tar.xz
obsoleted files
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3448 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader')
-rw-r--r--loader/dshow/DS_AudioDec.h26
-rw-r--r--loader/dshow/DS_VideoDec.h30
2 files changed, 0 insertions, 56 deletions
diff --git a/loader/dshow/DS_AudioDec.h b/loader/dshow/DS_AudioDec.h
deleted file mode 100644
index af60703236..0000000000
--- a/loader/dshow/DS_AudioDec.h
+++ /dev/null
@@ -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 --git a/loader/dshow/DS_VideoDec.h b/loader/dshow/DS_VideoDec.h
deleted file mode 100644
index 8a94c01cd3..0000000000
--- a/loader/dshow/DS_VideoDec.h
+++ /dev/null
@@ -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) */