build: fix MSVS build problems

with 'CL=/permissive-'
pull/11282/head
Alexander Alekhin 7 years ago
parent a68ffc81da
commit d2d9fd6945
  1. 2
      modules/imgproc/src/color_lab.cpp
  2. 15
      modules/videoio/src/cap_msmf.cpp
  3. 2
      modules/videoio/src/cap_msmf.hpp

@ -700,7 +700,7 @@ struct XYZ2RGB_f<float>
: dstcn(_dstcn), blueIdx(_blueIdx) : dstcn(_dstcn), blueIdx(_blueIdx)
{ {
for(int i = 0; i < 9; i++) for(int i = 0; i < 9; i++)
coeffs[i] = _coeffs ? _coeffs[i] : XYZ2sRGB_D65[i]; coeffs[i] = _coeffs ? _coeffs[i] : (float)XYZ2sRGB_D65[i];
if(blueIdx == 0) if(blueIdx == 0)
{ {
std::swap(coeffs[0], coeffs[6]); std::swap(coeffs[0], coeffs[6]);

@ -543,7 +543,7 @@ public:
// Getting frame rate, which is getting from videodevice with deviceID // Getting frame rate, which is getting from videodevice with deviceID
unsigned int getFrameRate(int deviceID) const; unsigned int getFrameRate(int deviceID) const;
// Getting name of videodevice with deviceID // Getting name of videodevice with deviceID
wchar_t *getNameVideoDevice(int deviceID); const wchar_t *getNameVideoDevice(int deviceID);
// Getting interface MediaSource for Media Foundation from videodevice with deviceID // Getting interface MediaSource for Media Foundation from videodevice with deviceID
IMFMediaSource *getMediaSource(int deviceID); IMFMediaSource *getMediaSource(int deviceID);
// Getting format with id, which is supported by videodevice with deviceID // Getting format with id, which is supported by videodevice with deviceID
@ -1371,8 +1371,10 @@ void ImageGrabberCallback::resumeGrabbing()
HRESULT ImageGrabber::CreateTopology(IMFMediaSource *pSource, IMFActivate *pSinkActivate, IMFTopology **ppTopo) HRESULT ImageGrabber::CreateTopology(IMFMediaSource *pSource, IMFActivate *pSinkActivate, IMFTopology **ppTopo)
{ {
HRESULT hr = S_OK;
{ // "done:" scope
_ComPtr<IMFPresentationDescriptor> pPD = NULL; _ComPtr<IMFPresentationDescriptor> pPD = NULL;
HRESULT hr = !pSource ? E_POINTER : S_OK; CHECK_HR(hr); hr = !pSource ? E_POINTER : S_OK; CHECK_HR(hr);
CHECK_HR(hr = pSource->CreatePresentationDescriptor(pPD.GetAddressOf())); CHECK_HR(hr = pSource->CreatePresentationDescriptor(pPD.GetAddressOf()));
DWORD cStreams = 0; DWORD cStreams = 0;
@ -1455,6 +1457,7 @@ HRESULT ImageGrabber::CreateTopology(IMFMediaSource *pSource, IMFActivate *pSink
else else
hr = E_INVALIDARG; hr = E_INVALIDARG;
} // "done:" scope
done: done:
return hr; return hr;
} }
@ -2613,11 +2616,14 @@ HRESULT videoDevice::enumerateCaptureFormats(MAKE_WRL_REF(_MediaCapture) pSource
HRESULT videoDevice::enumerateCaptureFormats(IMFMediaSource *pSource) HRESULT videoDevice::enumerateCaptureFormats(IMFMediaSource *pSource)
{ {
HRESULT hr = S_OK;
{ // "done:" scope
_ComPtr<IMFPresentationDescriptor> pPD = NULL; _ComPtr<IMFPresentationDescriptor> pPD = NULL;
_ComPtr<IMFStreamDescriptor> pSD = NULL; _ComPtr<IMFStreamDescriptor> pSD = NULL;
_ComPtr<IMFMediaTypeHandler> pHandler = NULL; _ComPtr<IMFMediaTypeHandler> pHandler = NULL;
_ComPtr<IMFMediaType> pType = NULL; _ComPtr<IMFMediaType> pType = NULL;
HRESULT hr = !pSource ? E_POINTER : S_OK; hr = !pSource ? E_POINTER : S_OK;
if (FAILED(hr)) if (FAILED(hr))
{ {
goto done; goto done;
@ -2655,6 +2661,7 @@ HRESULT videoDevice::enumerateCaptureFormats(IMFMediaSource *pSource)
vd_CurrentFormats.push_back(MT); vd_CurrentFormats.push_back(MT);
} }
} // "done:" scope
done: done:
return hr; return hr;
} }
@ -3234,7 +3241,7 @@ unsigned int videoInput::getFrameRate(int deviceID) const
return 0; return 0;
} }
wchar_t *videoInput::getNameVideoDevice(int deviceID) const wchar_t *videoInput::getNameVideoDevice(int deviceID)
{ {
if (deviceID < 0) if (deviceID < 0)
{ {

@ -2088,7 +2088,7 @@ template <class T, bool NULLABLE = FALSE>
class ComPtrList : public List<T*> class ComPtrList : public List<T*>
{ {
public: public:
typedef typename List<T*>::Node Node;
typedef T* Ptr; typedef T* Ptr;
void Clear() void Clear()

Loading…
Cancel
Save