Commit 98fbcc4d authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

qedit: Avoid using long.

parent a712a292
...@@ -38,8 +38,8 @@ typedef struct MediaDetImpl { ...@@ -38,8 +38,8 @@ typedef struct MediaDetImpl {
IGraphBuilder *graph; IGraphBuilder *graph;
IBaseFilter *source; IBaseFilter *source;
IBaseFilter *splitter; IBaseFilter *splitter;
long num_streams; LONG num_streams;
long cur_stream; LONG cur_stream;
IPin *cur_pin; IPin *cur_pin;
} MediaDetImpl; } MediaDetImpl;
...@@ -168,7 +168,7 @@ static HRESULT WINAPI MediaDet_get_CurrentStream(IMediaDet* iface, LONG *pVal) ...@@ -168,7 +168,7 @@ static HRESULT WINAPI MediaDet_get_CurrentStream(IMediaDet* iface, LONG *pVal)
return S_OK; return S_OK;
} }
static HRESULT SetCurPin(MediaDetImpl *This, long strm) static HRESULT SetCurPin(MediaDetImpl *This, LONG strm)
{ {
IEnumPins *pins; IEnumPins *pins;
IPin *pin; IPin *pin;
......
...@@ -489,7 +489,7 @@ static void SampleGrabber_callback(SG_Impl *This, IMediaSample *sample) ...@@ -489,7 +489,7 @@ static void SampleGrabber_callback(SG_Impl *This, IMediaSample *sample)
REFERENCE_TIME tStart, tEnd; REFERENCE_TIME tStart, tEnd;
if (This->bufferLen >= 0) { if (This->bufferLen >= 0) {
BYTE *data = 0; BYTE *data = 0;
long size = IMediaSample_GetActualDataLength(sample); LONG size = IMediaSample_GetActualDataLength(sample);
if (size >= 0 && SUCCEEDED(IMediaSample_GetPointer(sample, &data))) { if (size >= 0 && SUCCEEDED(IMediaSample_GetPointer(sample, &data))) {
if (!data) if (!data)
size = 0; size = 0;
...@@ -527,7 +527,7 @@ static void SampleGrabber_callback(SG_Impl *This, IMediaSample *sample) ...@@ -527,7 +527,7 @@ static void SampleGrabber_callback(SG_Impl *This, IMediaSample *sample)
case 1: case 1:
{ {
BYTE *data = 0; BYTE *data = 0;
long size = IMediaSample_GetActualDataLength(sample); LONG size = IMediaSample_GetActualDataLength(sample);
if (size && SUCCEEDED(IMediaSample_GetPointer(sample, &data)) && data) if (size && SUCCEEDED(IMediaSample_GetPointer(sample, &data)) && data)
ISampleGrabberCB_BufferCB(This->grabberIface, time, data, size); ISampleGrabberCB_BufferCB(This->grabberIface, time, data, size);
} }
...@@ -535,7 +535,7 @@ static void SampleGrabber_callback(SG_Impl *This, IMediaSample *sample) ...@@ -535,7 +535,7 @@ static void SampleGrabber_callback(SG_Impl *This, IMediaSample *sample)
case -1: case -1:
break; break;
default: default:
FIXME("unsupported method %ld\n", (long int)This->grabberMethod); FIXME("unsupported method %d\n", This->grabberMethod);
/* do not bother us again */ /* do not bother us again */
This->grabberMethod = -1; This->grabberMethod = -1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment