summaryrefslogtreecommitdiffstats
path: root/loader/dshow/DS_VideoDec.h
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
commitcc4dea654d70255406df7c7482242737420adc1a (patch)
tree203f7a6e4e722f0ea71547c3c2e0efd595e1ab24 /loader/dshow/DS_VideoDec.h
parent699bea5dc362989fb0dd57ad2a95b31be65113ed (diff)
downloadmpv-cc4dea654d70255406df7c7482242737420adc1a.tar.bz2
mpv-cc4dea654d70255406df7c7482242737420adc1a.tar.xz
obsoleted files
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3447 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader/dshow/DS_VideoDec.h')
-rw-r--r--loader/dshow/DS_VideoDec.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/loader/dshow/DS_VideoDec.h b/loader/dshow/DS_VideoDec.h
index d3c9415c54..8a94c01cd3 100644
--- a/loader/dshow/DS_VideoDec.h
+++ b/loader/dshow/DS_VideoDec.h
@@ -10,21 +10,19 @@
extern "C" {
#endif /* defined(__cplusplus) */
-int DS_VideoDecoder_Open(char* dllname, GUID* guid, BITMAPINFOHEADER* format, int flip,char** d_ptr);
+void* DS_VideoDecoder_Open(char* dllname, GUID* guid, BITMAPINFOHEADER* format, int flip, int maxauto);
-void DS_VideoDecoder_Start();
+void DS_VideoDecoder_StartInternal(void* _handle);
-void DS_VideoDecoder_Stop();
+void DS_VideoDecoder_Stop(void* _handle);
-void DS_VideoDecoder_Restart();
+void DS_VideoDecoder_Destroy(void* _handle);
-void DS_VideoDecoder_Close();
+int DS_VideoDecoder_DecodeInternal(void* _handle, char* src, int size, int is_keyframe, char* dest);
-int DS_VideoDecoder_DecodeFrame(char* src, int size, int is_keyframe, int render);
+int DS_VideoDecoder_SetDestFmt(void* _handle, int bits, int csp);
-int DS_VideoDecoder_SetDestFmt(int bits, int csp);
-
-int DS_SetValue_DivX(char* name, int value);
+int DS_VideoDecoder_SetValue(void* _handle, char* name, int value);
int DS_SetAttr_DivX(char* attribute, int value);
#ifdef __cplusplus