[Mplayer-cvslog] CVS: main/loader/dshow DS_AudioDec.h,1.1,1.2 DS_VideoDec.h,1.2,1.3
Arpi of Ize
arpi at mplayer.dev.hu
Mon Dec 10 22:56:08 CET 2001
- Previous message: [Mplayer-cvslog] CVS: main/loader/dshow DS_AudioDecoder.c,1.5,1.6 DS_AudioDecoder.h,1.4,1.5 DS_VideoDecoder.c,1.12,1.13 DS_VideoDecoder.h,1.3,1.4
- Next message: [Mplayer-cvslog] CVS: main/DOCS/German sound.html,1.7,1.8
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/mplayer/main/loader/dshow
In directory mplayer:/var/tmp.root/cvs-serv11600
Modified Files:
DS_AudioDec.h DS_VideoDec.h
Log Message:
obsoleted files
Index: DS_AudioDec.h
===================================================================
RCS file: /cvsroot/mplayer/main/loader/dshow/DS_AudioDec.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- DS_AudioDec.h 22 Mar 2001 01:55:53 -0000 1.1
+++ DS_AudioDec.h 10 Dec 2001 21:56:05 -0000 1.2
@@ -10,14 +10,15 @@
extern "C" {
#endif /* defined(__cplusplus) */
-int DS_AudioDecoder_Open(char* dllname, GUID* guid, WAVEFORMATEX* wf);
+void* DS_AudioDecoder_Open(char* dllname, GUID* guid, WAVEFORMATEX* wf);
-void DS_AudioDecoder_Close();
+void DS_AudioDecoder_Close(void* _handle);
-int DS_AudioDecoder_GetSrcSize(int dest_size);
+int DS_AudioDecoder_GetSrcSize(void* _handle, int dest_size);
-int DS_AudioDecoder_Convert(unsigned char* in_data, unsigned in_size,
- unsigned char* out_data, unsigned out_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
Index: DS_VideoDec.h
===================================================================
RCS file: /cvsroot/mplayer/main/loader/dshow/DS_VideoDec.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- DS_VideoDec.h 20 Mar 2001 21:12:37 -0000 1.2
+++ DS_VideoDec.h 10 Dec 2001 21:56:05 -0000 1.3
@@ -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
- Previous message: [Mplayer-cvslog] CVS: main/loader/dshow DS_AudioDecoder.c,1.5,1.6 DS_AudioDecoder.h,1.4,1.5 DS_VideoDecoder.c,1.12,1.13 DS_VideoDecoder.h,1.3,1.4
- Next message: [Mplayer-cvslog] CVS: main/DOCS/German sound.html,1.7,1.8
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list