[QEDIT]
authorChristoph von Wittich <christoph_vw@reactos.org>
Sat, 29 May 2010 09:05:43 +0000 (09:05 +0000)
committerChristoph von Wittich <christoph_vw@reactos.org>
Sat, 29 May 2010 09:05:43 +0000 (09:05 +0000)
sync to wine 1.2 RC2

svn path=/trunk/; revision=47400

reactos/dll/directx/qedit/mediadet.c
reactos/dll/directx/qedit/regsvr.c
reactos/dll/directx/qedit/samplegrabber.c

index 3a13f71..9aeb9c0 100644 (file)
@@ -38,8 +38,8 @@ typedef struct MediaDetImpl {
     IGraphBuilder *graph;
     IBaseFilter *source;
     IBaseFilter *splitter;
-    long num_streams;
-    long cur_stream;
+    LONG num_streams;
+    LONG cur_stream;
     IPin *cur_pin;
 } MediaDetImpl;
 
@@ -168,7 +168,7 @@ static HRESULT WINAPI MediaDet_get_CurrentStream(IMediaDet* iface, LONG *pVal)
     return S_OK;
 }
 
-static HRESULT SetCurPin(MediaDetImpl *This, long strm)
+static HRESULT SetCurPin(MediaDetImpl *This, LONG strm)
 {
     IEnumPins *pins;
     IPin *pin;
index d70c822..d007311 100644 (file)
@@ -326,5 +326,5 @@ HRESULT WINAPI DllUnregisterServer(void)
     TRACE("\n");
 
     hr = unregister_coclasses(coclass_list);
-    return S_OK;
+    return hr;
 }
index 78a7306..78979fe 100644 (file)
@@ -489,7 +489,7 @@ static void SampleGrabber_callback(SG_Impl *This, IMediaSample *sample)
     REFERENCE_TIME tStart, tEnd;
     if (This->bufferLen >= 0) {
         BYTE *data = 0;
-        long size = IMediaSample_GetActualDataLength(sample);
+        LONG size = IMediaSample_GetActualDataLength(sample);
         if (size >= 0 && SUCCEEDED(IMediaSample_GetPointer(sample, &data))) {
             if (!data)
                 size = 0;
@@ -527,7 +527,7 @@ static void SampleGrabber_callback(SG_Impl *This, IMediaSample *sample)
         case 1:
             {
                 BYTE *data = 0;
-                long size = IMediaSample_GetActualDataLength(sample);
+                LONG size = IMediaSample_GetActualDataLength(sample);
                 if (size && SUCCEEDED(IMediaSample_GetPointer(sample, &data)) && data)
                     ISampleGrabberCB_BufferCB(This->grabberIface, time, data, size);
             }
@@ -535,7 +535,7 @@ static void SampleGrabber_callback(SG_Impl *This, IMediaSample *sample)
         case -1:
             break;
         default:
-            FIXME("unsupported method %ld\n", (long int)This->grabberMethod);
+            FIXME("unsupported method %d\n", This->grabberMethod);
             /* do not bother us again */
             This->grabberMethod = -1;
     }