[host] return the compressed frame size in the pitch field

This commit is contained in:
Geoffrey McRae
2017-12-29 21:01:02 +11:00
parent 03622f61b0
commit b5f2092e9c
2 changed files with 6 additions and 3 deletions

View File

@@ -885,8 +885,11 @@ GrabStatus Capture::DXGI::GrabFrameH264(FrameInfo & frame)
buffer->Lock(&pixels, &maxLen, &curLen);
m_memcpy.Copy(frame.buffer, pixels, curLen);
buffer->Unlock();
SafeRelease(&buffer);
frame.stride = 0;
frame.pitch = curLen;
TRACE_END;
return GRAB_STATUS_OK;
}