diff loader/dshow/DS_VideoDec.c @ 1555:076c27342828

Start/Stop state flag fixed - requires for brightness/contrast/etc stuff...
author arpi
date Thu, 16 Aug 2001 15:41:03 +0000
parents da26060c81ef
children 241ea640d1c3
line wrap: on
line diff
--- a/loader/dshow/DS_VideoDec.c	Thu Aug 16 15:36:12 2001 +0000
+++ b/loader/dshow/DS_VideoDec.c	Thu Aug 16 15:41:03 2001 +0000
@@ -44,12 +44,12 @@
 
 extern "C" void DS_VideoDecoder_Start(){
     DS_VideoDecoder* dec=(DS_VideoDecoder*) _handle;
-    dec->StartInternal();
+    dec->Start();
 }
 
 extern "C" void DS_VideoDecoder_Stop(){
     DS_VideoDecoder* dec=(DS_VideoDecoder*) _handle;
-    dec->StopInternal();
+    dec->Stop();
 }
 
 extern "C" void DS_VideoDecoder_Restart(){
@@ -72,6 +72,7 @@
 
 extern "C" int DS_SetValue_DivX(char* name, int value){
     DS_VideoDecoder* dec=(DS_VideoDecoder*) _handle;
+    printf("DS_SetValue_DivX(%s),%d)\n",name,value);
     return (int) dec->SetValue(name,value);
 }