qcap: Make the image buffer a local variable.

Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura 2019-04-10 22:32:03 -05:00 committed by Alexandre Julliard
parent 2011518d30
commit 7aa9a04f26
1 changed files with 7 additions and 10 deletions

View File

@ -105,9 +105,6 @@ struct _Capture
int fd, mmap; int fd, mmap;
BOOL iscommitted, stopped; BOOL iscommitted, stopped;
int image_size;
unsigned char *image_data;
HANDLE thread; HANDLE thread;
}; };
@ -367,10 +364,11 @@ static DWORD WINAPI ReadThread(LPVOID lParam)
HRESULT hr; HRESULT hr;
IMediaSample *pSample = NULL; IMediaSample *pSample = NULL;
ULONG framecount = 0; ULONG framecount = 0;
unsigned char *pTarget; unsigned char *pTarget, *image_data;
unsigned int image_size;
capBox->image_size = capBox->height * capBox->width * 3; image_size = capBox->height * capBox->width * 3;
if (!(capBox->image_data = heap_alloc(capBox->image_size))) if (!(image_data = heap_alloc(image_size)))
{ {
ERR("Failed to allocate memory.\n"); ERR("Failed to allocate memory.\n");
capBox->thread = 0; capBox->thread = 0;
@ -399,7 +397,7 @@ static DWORD WINAPI ReadThread(LPVOID lParam)
IMediaSample_GetPointer(pSample, &pTarget); IMediaSample_GetPointer(pSample, &pTarget);
while (video_read(capBox->fd, capBox->image_data, capBox->image_size) == -1) while (video_read(capBox->fd, image_data, image_size) == -1)
{ {
if (errno != EAGAIN) if (errno != EAGAIN)
{ {
@ -408,7 +406,7 @@ static DWORD WINAPI ReadThread(LPVOID lParam)
} }
} }
Resize(capBox, pTarget, capBox->image_data); Resize(capBox, pTarget, image_data);
hr = BaseOutputPinImpl_Deliver((BaseOutputPin *)capBox->pOut, pSample); hr = BaseOutputPinImpl_Deliver((BaseOutputPin *)capBox->pOut, pSample);
TRACE("%p -> Frame %u: %x\n", capBox, ++framecount, hr); TRACE("%p -> Frame %u: %x\n", capBox, ++framecount, hr);
IMediaSample_Release(pSample); IMediaSample_Release(pSample);
@ -416,7 +414,6 @@ static DWORD WINAPI ReadThread(LPVOID lParam)
if (FAILED(hr) && hr != VFW_E_NOT_CONNECTED) if (FAILED(hr) && hr != VFW_E_NOT_CONNECTED)
{ {
TRACE("Return %x, stop IFilterGraph\n", hr); TRACE("Return %x, stop IFilterGraph\n", hr);
heap_free(capBox->image_data);
capBox->thread = 0; capBox->thread = 0;
capBox->stopped = TRUE; capBox->stopped = TRUE;
break; break;
@ -425,6 +422,7 @@ static DWORD WINAPI ReadThread(LPVOID lParam)
} }
LeaveCriticalSection(&capBox->CritSect); LeaveCriticalSection(&capBox->CritSect);
heap_free(image_data);
return 0; return 0;
} }
@ -535,7 +533,6 @@ HRESULT qcap_driver_stop(Capture *capBox, FILTER_STATE *state)
if (hr != S_OK && hr != VFW_E_NOT_COMMITTED) if (hr != S_OK && hr != VFW_E_NOT_COMMITTED)
WARN("Decommitting allocator: %x\n", hr); WARN("Decommitting allocator: %x\n", hr);
} }
heap_free(capBox->image_data);
} }
*state = State_Stopped; *state = State_Stopped;