| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499 |
- // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
- // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
- // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
- // PARTICULAR PURPOSE.
- //
- // Copyright (c) Microsoft Corporation. All rights reserved.
- #include "OcvTransform.h"
- #include "bufferlock.h"
- #include <opencv2\core.hpp>
- #include <opencv2\imgproc.hpp>
- #include <opencv2\features2d.hpp>
- using namespace Microsoft::WRL;
- /*
- This sample implements a video effect as a Media Foundation transform (MFT).
- NOTES ON THE MFT IMPLEMENTATION
- 1. The MFT has fixed streams: One input stream and one output stream.
- 2. The MFT supports NV12 format only.
- 3. If the MFT is holding an input sample, SetInputType and SetOutputType both fail.
- 4. The input and output types must be identical.
- 5. If both types are set, no type can be set until the current type is cleared.
- 6. Preferred input types:
- (a) If the output type is set, that's the preferred type.
- (b) Otherwise, the preferred types are partial types, constructed from the
- list of supported subtypes.
- 7. Preferred output types: As above.
- 8. Streaming:
- The private BeingStreaming() method is called in response to the
- MFT_MESSAGE_NOTIFY_BEGIN_STREAMING message.
- If the client does not send MFT_MESSAGE_NOTIFY_BEGIN_STREAMING, the MFT calls
- BeginStreaming inside the first call to ProcessInput or ProcessOutput.
- This is a good approach for allocating resources that your MFT requires for
- streaming.
- 9. The configuration attributes are applied in the BeginStreaming method. If the
- client changes the attributes during streaming, the change is ignored until
- streaming is stopped (either by changing the media types or by sending the
- MFT_MESSAGE_NOTIFY_END_STREAMING message) and then restarted.
- */
- // Static array of media types (preferred and accepted).
- const GUID g_MediaSubtypes[] =
- {
- MFVideoFormat_NV12
- };
- HRESULT GetDefaultStride(IMFMediaType *pType, LONG *plStride);
- template <typename T>
- inline T clamp(const T& val, const T& minVal, const T& maxVal)
- {
- return (val < minVal ? minVal : (val > maxVal ? maxVal : val));
- }
- OcvImageManipulations::OcvImageManipulations() :
- m_pSample(NULL), m_pInputType(NULL), m_pOutputType(NULL),
- m_imageWidthInPixels(0), m_imageHeightInPixels(0), m_cbImageSize(0),
- m_TransformType(Preview), m_bStreamingInitialized(false),
- m_pAttributes(NULL)
- {
- InitializeCriticalSectionEx(&m_critSec, 3000, 0);
- }
- OcvImageManipulations::~OcvImageManipulations()
- {
- SafeRelease(&m_pInputType);
- SafeRelease(&m_pOutputType);
- SafeRelease(&m_pSample);
- SafeRelease(&m_pAttributes);
- DeleteCriticalSection(&m_critSec);
- }
- // Initialize the instance.
- STDMETHODIMP OcvImageManipulations::RuntimeClassInitialize()
- {
- // Create the attribute store.
- return MFCreateAttributes(&m_pAttributes, 3);
- }
- // IMediaExtension methods
- //-------------------------------------------------------------------
- // SetProperties
- // Sets the configuration of the effect
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::SetProperties(ABI::Windows::Foundation::Collections::IPropertySet *pConfiguration)
- {
- HRESULT hr = S_OK;
- if (!pConfiguration)
- return hr;
- HSTRING key;
- WindowsCreateString(L"{698649BE-8EAE-4551-A4CB-3EC98FBD3D86}", 38, &key);
- Microsoft::WRL::ComPtr<ABI::Windows::Foundation::Collections::IMap<HSTRING, IInspectable *>> spSetting;
- pConfiguration->QueryInterface(IID_PPV_ARGS(&spSetting));
- boolean found;
- spSetting->HasKey(key, &found);
- if (found)
- {
- Microsoft::WRL::ComPtr<ABI::Windows::Foundation::IPropertyValue> spPropVal;
- Microsoft::WRL::ComPtr<IInspectable> spInsp;
- spSetting->Lookup(key, spInsp.ReleaseAndGetAddressOf());
- hr = spInsp.As(&spPropVal);
- if (hr != S_OK)
- {
- return hr;
- }
- INT32 effect;
- hr = spPropVal->GetInt32(&effect);
- if (hr != S_OK)
- {
- return hr;
- }
- if ((effect >= 0) && (effect < InvalidEffect))
- {
- m_TransformType = (ProcessingType)effect;
- }
- }
- return hr;
- }
- // IMFTransform methods. Refer to the Media Foundation SDK documentation for details.
- //-------------------------------------------------------------------
- // GetStreamLimits
- // Returns the minimum and maximum number of streams.
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::GetStreamLimits(
- DWORD *pdwInputMinimum,
- DWORD *pdwInputMaximum,
- DWORD *pdwOutputMinimum,
- DWORD *pdwOutputMaximum
- )
- {
- if ((pdwInputMinimum == NULL) ||
- (pdwInputMaximum == NULL) ||
- (pdwOutputMinimum == NULL) ||
- (pdwOutputMaximum == NULL))
- {
- return E_POINTER;
- }
- // This MFT has a fixed number of streams.
- *pdwInputMinimum = 1;
- *pdwInputMaximum = 1;
- *pdwOutputMinimum = 1;
- *pdwOutputMaximum = 1;
- return S_OK;
- }
- //-------------------------------------------------------------------
- // GetStreamCount
- // Returns the actual number of streams.
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::GetStreamCount(
- DWORD *pcInputStreams,
- DWORD *pcOutputStreams
- )
- {
- if ((pcInputStreams == NULL) || (pcOutputStreams == NULL))
- {
- return E_POINTER;
- }
- // This MFT has a fixed number of streams.
- *pcInputStreams = 1;
- *pcOutputStreams = 1;
- return S_OK;
- }
- //-------------------------------------------------------------------
- // GetStreamIDs
- // Returns stream IDs for the input and output streams.
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::GetStreamIDs(
- DWORD dwInputIDArraySize,
- DWORD *pdwInputIDs,
- DWORD dwOutputIDArraySize,
- DWORD *pdwOutputIDs
- )
- {
- // It is not required to implement this method if the MFT has a fixed number of
- // streams AND the stream IDs are numbered sequentially from zero (that is, the
- // stream IDs match the stream indexes).
- // In that case, it is OK to return E_NOTIMPL.
- return E_NOTIMPL;
- }
- //-------------------------------------------------------------------
- // GetInputStreamInfo
- // Returns information about an input stream.
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::GetInputStreamInfo(
- DWORD dwInputStreamID,
- MFT_INPUT_STREAM_INFO * pStreamInfo
- )
- {
- if (pStreamInfo == NULL)
- {
- return E_POINTER;
- }
- EnterCriticalSection(&m_critSec);
- if (!IsValidInputStream(dwInputStreamID))
- {
- LeaveCriticalSection(&m_critSec);
- return MF_E_INVALIDSTREAMNUMBER;
- }
- // NOTE: This method should succeed even when there is no media type on the
- // stream. If there is no media type, we only need to fill in the dwFlags
- // member of MFT_INPUT_STREAM_INFO. The other members depend on having a
- // a valid media type.
- pStreamInfo->hnsMaxLatency = 0;
- pStreamInfo->dwFlags = MFT_INPUT_STREAM_WHOLE_SAMPLES | MFT_INPUT_STREAM_SINGLE_SAMPLE_PER_BUFFER;
- if (m_pInputType == NULL)
- {
- pStreamInfo->cbSize = 0;
- }
- else
- {
- pStreamInfo->cbSize = m_cbImageSize;
- }
- pStreamInfo->cbMaxLookahead = 0;
- pStreamInfo->cbAlignment = 0;
- LeaveCriticalSection(&m_critSec);
- return S_OK;
- }
- //-------------------------------------------------------------------
- // GetOutputStreamInfo
- // Returns information about an output stream.
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::GetOutputStreamInfo(
- DWORD dwOutputStreamID,
- MFT_OUTPUT_STREAM_INFO * pStreamInfo
- )
- {
- if (pStreamInfo == NULL)
- {
- return E_POINTER;
- }
- EnterCriticalSection(&m_critSec);
- if (!IsValidOutputStream(dwOutputStreamID))
- {
- LeaveCriticalSection(&m_critSec);
- return MF_E_INVALIDSTREAMNUMBER;
- }
- // NOTE: This method should succeed even when there is no media type on the
- // stream. If there is no media type, we only need to fill in the dwFlags
- // member of MFT_OUTPUT_STREAM_INFO. The other members depend on having a
- // a valid media type.
- pStreamInfo->dwFlags =
- MFT_OUTPUT_STREAM_WHOLE_SAMPLES |
- MFT_OUTPUT_STREAM_SINGLE_SAMPLE_PER_BUFFER |
- MFT_OUTPUT_STREAM_FIXED_SAMPLE_SIZE ;
- if (m_pOutputType == NULL)
- {
- pStreamInfo->cbSize = 0;
- }
- else
- {
- pStreamInfo->cbSize = m_cbImageSize;
- }
- pStreamInfo->cbAlignment = 0;
- LeaveCriticalSection(&m_critSec);
- return S_OK;
- }
- //-------------------------------------------------------------------
- // GetAttributes
- // Returns the attributes for the MFT.
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::GetAttributes(IMFAttributes** ppAttributes)
- {
- if (ppAttributes == NULL)
- {
- return E_POINTER;
- }
- EnterCriticalSection(&m_critSec);
- *ppAttributes = m_pAttributes;
- (*ppAttributes)->AddRef();
- LeaveCriticalSection(&m_critSec);
- return S_OK;
- }
- //-------------------------------------------------------------------
- // GetInputStreamAttributes
- // Returns stream-level attributes for an input stream.
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::GetInputStreamAttributes(
- DWORD dwInputStreamID,
- IMFAttributes **ppAttributes
- )
- {
- // This MFT does not support any stream-level attributes, so the method is not implemented.
- return E_NOTIMPL;
- }
- //-------------------------------------------------------------------
- // GetOutputStreamAttributes
- // Returns stream-level attributes for an output stream.
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::GetOutputStreamAttributes(
- DWORD dwOutputStreamID,
- IMFAttributes **ppAttributes
- )
- {
- // This MFT does not support any stream-level attributes, so the method is not implemented.
- return E_NOTIMPL;
- }
- //-------------------------------------------------------------------
- // DeleteInputStream
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::DeleteInputStream(DWORD dwStreamID)
- {
- // This MFT has a fixed number of input streams, so the method is not supported.
- return E_NOTIMPL;
- }
- //-------------------------------------------------------------------
- // AddInputStreams
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::AddInputStreams(
- DWORD cStreams,
- DWORD *adwStreamIDs
- )
- {
- // This MFT has a fixed number of output streams, so the method is not supported.
- return E_NOTIMPL;
- }
- //-------------------------------------------------------------------
- // GetInputAvailableType
- // Returns a preferred input type.
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::GetInputAvailableType(
- DWORD dwInputStreamID,
- DWORD dwTypeIndex, // 0-based
- IMFMediaType **ppType
- )
- {
- if (ppType == NULL)
- {
- return E_INVALIDARG;
- }
- EnterCriticalSection(&m_critSec);
- if (!IsValidInputStream(dwInputStreamID))
- {
- LeaveCriticalSection(&m_critSec);
- return MF_E_INVALIDSTREAMNUMBER;
- }
- HRESULT hr = S_OK;
- // If the output type is set, return that type as our preferred input type.
- if (m_pOutputType == NULL)
- {
- // The output type is not set. Create a partial media type.
- hr = OnGetPartialType(dwTypeIndex, ppType);
- }
- else if (dwTypeIndex > 0)
- {
- hr = MF_E_NO_MORE_TYPES;
- }
- else
- {
- *ppType = m_pOutputType;
- (*ppType)->AddRef();
- }
- LeaveCriticalSection(&m_critSec);
- return hr;
- }
- //-------------------------------------------------------------------
- // GetOutputAvailableType
- // Returns a preferred output type.
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::GetOutputAvailableType(
- DWORD dwOutputStreamID,
- DWORD dwTypeIndex, // 0-based
- IMFMediaType **ppType
- )
- {
- if (ppType == NULL)
- {
- return E_INVALIDARG;
- }
- EnterCriticalSection(&m_critSec);
- if (!IsValidOutputStream(dwOutputStreamID))
- {
- LeaveCriticalSection(&m_critSec);
- return MF_E_INVALIDSTREAMNUMBER;
- }
- HRESULT hr = S_OK;
- if (m_pInputType == NULL)
- {
- // The input type is not set. Create a partial media type.
- hr = OnGetPartialType(dwTypeIndex, ppType);
- }
- else if (dwTypeIndex > 0)
- {
- hr = MF_E_NO_MORE_TYPES;
- }
- else
- {
- *ppType = m_pInputType;
- (*ppType)->AddRef();
- }
- LeaveCriticalSection(&m_critSec);
- return hr;
- }
- //-------------------------------------------------------------------
- // SetInputType
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::SetInputType(
- DWORD dwInputStreamID,
- IMFMediaType *pType, // Can be NULL to clear the input type.
- DWORD dwFlags
- )
- {
- // Validate flags.
- if (dwFlags & ~MFT_SET_TYPE_TEST_ONLY)
- {
- return E_INVALIDARG;
- }
- EnterCriticalSection(&m_critSec);
- if (!IsValidInputStream(dwInputStreamID))
- {
- LeaveCriticalSection(&m_critSec);
- return MF_E_INVALIDSTREAMNUMBER;
- }
- HRESULT hr = S_OK;
- // Does the caller want us to set the type, or just test it?
- BOOL bReallySet = ((dwFlags & MFT_SET_TYPE_TEST_ONLY) == 0);
- // If we have an input sample, the client cannot change the type now.
- if (HasPendingOutput())
- {
- hr = MF_E_TRANSFORM_CANNOT_CHANGE_MEDIATYPE_WHILE_PROCESSING;
- goto done;
- }
- // Validate the type, if non-NULL.
- if (pType)
- {
- hr = OnCheckInputType(pType);
- if (FAILED(hr))
- {
- goto done;
- }
- }
- // The type is OK. Set the type, unless the caller was just testing.
- if (bReallySet)
- {
- OnSetInputType(pType);
- // When the type changes, end streaming.
- hr = EndStreaming();
- }
- done:
- LeaveCriticalSection(&m_critSec);
- return hr;
- }
- //-------------------------------------------------------------------
- // SetOutputType
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::SetOutputType(
- DWORD dwOutputStreamID,
- IMFMediaType *pType, // Can be NULL to clear the output type.
- DWORD dwFlags
- )
- {
- // Validate flags.
- if (dwFlags & ~MFT_SET_TYPE_TEST_ONLY)
- {
- return E_INVALIDARG;
- }
- EnterCriticalSection(&m_critSec);
- if (!IsValidOutputStream(dwOutputStreamID))
- {
- LeaveCriticalSection(&m_critSec);
- return MF_E_INVALIDSTREAMNUMBER;
- }
- HRESULT hr = S_OK;
- // Does the caller want us to set the type, or just test it?
- BOOL bReallySet = ((dwFlags & MFT_SET_TYPE_TEST_ONLY) == 0);
- // If we have an input sample, the client cannot change the type now.
- if (HasPendingOutput())
- {
- hr = MF_E_TRANSFORM_CANNOT_CHANGE_MEDIATYPE_WHILE_PROCESSING;
- goto done;
- }
- // Validate the type, if non-NULL.
- if (pType)
- {
- hr = OnCheckOutputType(pType);
- if (FAILED(hr))
- {
- goto done;
- }
- }
- // The type is OK. Set the type, unless the caller was just testing.
- if (bReallySet)
- {
- OnSetOutputType(pType);
- // When the type changes, end streaming.
- hr = EndStreaming();
- }
- done:
- LeaveCriticalSection(&m_critSec);
- return hr;
- }
- //-------------------------------------------------------------------
- // GetInputCurrentType
- // Returns the current input type.
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::GetInputCurrentType(
- DWORD dwInputStreamID,
- IMFMediaType **ppType
- )
- {
- if (ppType == NULL)
- {
- return E_POINTER;
- }
- HRESULT hr = S_OK;
- EnterCriticalSection(&m_critSec);
- if (!IsValidInputStream(dwInputStreamID))
- {
- hr = MF_E_INVALIDSTREAMNUMBER;
- }
- else if (!m_pInputType)
- {
- hr = MF_E_TRANSFORM_TYPE_NOT_SET;
- }
- else
- {
- *ppType = m_pInputType;
- (*ppType)->AddRef();
- }
- LeaveCriticalSection(&m_critSec);
- return hr;
- }
- //-------------------------------------------------------------------
- // GetOutputCurrentType
- // Returns the current output type.
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::GetOutputCurrentType(
- DWORD dwOutputStreamID,
- IMFMediaType **ppType
- )
- {
- if (ppType == NULL)
- {
- return E_POINTER;
- }
- HRESULT hr = S_OK;
- EnterCriticalSection(&m_critSec);
- if (!IsValidOutputStream(dwOutputStreamID))
- {
- hr = MF_E_INVALIDSTREAMNUMBER;
- }
- else if (!m_pOutputType)
- {
- hr = MF_E_TRANSFORM_TYPE_NOT_SET;
- }
- else
- {
- *ppType = m_pOutputType;
- (*ppType)->AddRef();
- }
- LeaveCriticalSection(&m_critSec);
- return hr;
- }
- //-------------------------------------------------------------------
- // GetInputStatus
- // Query if the MFT is accepting more input.
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::GetInputStatus(
- DWORD dwInputStreamID,
- DWORD *pdwFlags
- )
- {
- if (pdwFlags == NULL)
- {
- return E_POINTER;
- }
- EnterCriticalSection(&m_critSec);
- if (!IsValidInputStream(dwInputStreamID))
- {
- LeaveCriticalSection(&m_critSec);
- return MF_E_INVALIDSTREAMNUMBER;
- }
- // If an input sample is already queued, do not accept another sample until the
- // client calls ProcessOutput or Flush.
- // NOTE: It is possible for an MFT to accept more than one input sample. For
- // example, this might be required in a video decoder if the frames do not
- // arrive in temporal order. In the case, the decoder must hold a queue of
- // samples. For the video effect, each sample is transformed independently, so
- // there is no reason to queue multiple input samples.
- if (m_pSample == NULL)
- {
- *pdwFlags = MFT_INPUT_STATUS_ACCEPT_DATA;
- }
- else
- {
- *pdwFlags = 0;
- }
- LeaveCriticalSection(&m_critSec);
- return S_OK;
- }
- //-------------------------------------------------------------------
- // GetOutputStatus
- // Query if the MFT can produce output.
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::GetOutputStatus(DWORD *pdwFlags)
- {
- if (pdwFlags == NULL)
- {
- return E_POINTER;
- }
- EnterCriticalSection(&m_critSec);
- // The MFT can produce an output sample if (and only if) there an input sample.
- if (m_pSample != NULL)
- {
- *pdwFlags = MFT_OUTPUT_STATUS_SAMPLE_READY;
- }
- else
- {
- *pdwFlags = 0;
- }
- LeaveCriticalSection(&m_critSec);
- return S_OK;
- }
- //-------------------------------------------------------------------
- // SetOutputBounds
- // Sets the range of time stamps that the MFT will output.
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::SetOutputBounds(
- LONGLONG hnsLowerBound,
- LONGLONG hnsUpperBound
- )
- {
- // Implementation of this method is optional.
- return E_NOTIMPL;
- }
- //-------------------------------------------------------------------
- // ProcessEvent
- // Sends an event to an input stream.
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::ProcessEvent(
- DWORD dwInputStreamID,
- IMFMediaEvent *pEvent
- )
- {
- // This MFT does not handle any stream events, so the method can
- // return E_NOTIMPL. This tells the pipeline that it can stop
- // sending any more events to this MFT.
- return E_NOTIMPL;
- }
- //-------------------------------------------------------------------
- // ProcessMessage
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::ProcessMessage(
- MFT_MESSAGE_TYPE eMessage,
- ULONG_PTR ulParam
- )
- {
- EnterCriticalSection(&m_critSec);
- HRESULT hr = S_OK;
- switch (eMessage)
- {
- case MFT_MESSAGE_COMMAND_FLUSH:
- // Flush the MFT.
- hr = OnFlush();
- break;
- case MFT_MESSAGE_COMMAND_DRAIN:
- // Drain: Tells the MFT to reject further input until all pending samples are
- // processed. That is our default behavior already, so there is nothing to do.
- //
- // For a decoder that accepts a queue of samples, the MFT might need to drain
- // the queue in response to this command.
- break;
- case MFT_MESSAGE_SET_D3D_MANAGER:
- // Sets a pointer to the IDirect3DDeviceManager9 interface.
- // The pipeline should never send this message unless the MFT sets the MF_SA_D3D_AWARE
- // attribute set to TRUE. Because this MFT does not set MF_SA_D3D_AWARE, it is an error
- // to send the MFT_MESSAGE_SET_D3D_MANAGER message to the MFT. Return an error code in
- // this case.
- // NOTE: If this MFT were D3D-enabled, it would cache the IDirect3DDeviceManager9
- // pointer for use during streaming.
- hr = E_NOTIMPL;
- break;
- case MFT_MESSAGE_NOTIFY_BEGIN_STREAMING:
- hr = BeginStreaming();
- break;
- case MFT_MESSAGE_NOTIFY_END_STREAMING:
- hr = EndStreaming();
- break;
- // The next two messages do not require any action from this MFT.
- case MFT_MESSAGE_NOTIFY_END_OF_STREAM:
- break;
- case MFT_MESSAGE_NOTIFY_START_OF_STREAM:
- break;
- }
- LeaveCriticalSection(&m_critSec);
- return hr;
- }
- //-------------------------------------------------------------------
- // ProcessInput
- // Process an input sample.
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::ProcessInput(
- DWORD dwInputStreamID,
- IMFSample *pSample,
- DWORD dwFlags
- )
- {
- // Check input parameters.
- if (pSample == NULL)
- {
- return E_POINTER;
- }
- if (dwFlags != 0)
- {
- return E_INVALIDARG; // dwFlags is reserved and must be zero.
- }
- HRESULT hr = S_OK;
- EnterCriticalSection(&m_critSec);
- // Validate the input stream number.
- if (!IsValidInputStream(dwInputStreamID))
- {
- hr = MF_E_INVALIDSTREAMNUMBER;
- goto done;
- }
- // Check for valid media types.
- // The client must set input and output types before calling ProcessInput.
- if (!m_pInputType || !m_pOutputType)
- {
- hr = MF_E_NOTACCEPTING;
- goto done;
- }
- // Check if an input sample is already queued.
- if (m_pSample != NULL)
- {
- hr = MF_E_NOTACCEPTING; // We already have an input sample.
- goto done;
- }
- // Initialize streaming.
- hr = BeginStreaming();
- if (FAILED(hr))
- {
- goto done;
- }
- // Cache the sample. We do the actual work in ProcessOutput.
- m_pSample = pSample;
- pSample->AddRef(); // Hold a reference count on the sample.
- done:
- LeaveCriticalSection(&m_critSec);
- return hr;
- }
- //-------------------------------------------------------------------
- // ProcessOutput
- // Process an output sample.
- //-------------------------------------------------------------------
- HRESULT OcvImageManipulations::ProcessOutput(
- DWORD dwFlags,
- DWORD cOutputBufferCount,
- MFT_OUTPUT_DATA_BUFFER *pOutputSamples, // one per stream
- DWORD *pdwStatus
- )
- {
- // Check input parameters...
- // This MFT does not accept any flags for the dwFlags parameter.
- // The only defined flag is MFT_PROCESS_OUTPUT_DISCARD_WHEN_NO_BUFFER. This flag
- // applies only when the MFT marks an output stream as lazy or optional. But this
- // MFT has no lazy or optional streams, so the flag is not valid.
- if (dwFlags != 0)
- {
- return E_INVALIDARG;
- }
- if (pOutputSamples == NULL || pdwStatus == NULL)
- {
- return E_POINTER;
- }
- // There must be exactly one output buffer.
- if (cOutputBufferCount != 1)
- {
- return E_INVALIDARG;
- }
- // It must contain a sample.
- if (pOutputSamples[0].pSample == NULL)
- {
- return E_INVALIDARG;
- }
- HRESULT hr = S_OK;
- IMFMediaBuffer *pInput = NULL;
- IMFMediaBuffer *pOutput = NULL;
- EnterCriticalSection(&m_critSec);
- // There must be an input sample available for processing.
- if (m_pSample == NULL)
- {
- hr = MF_E_TRANSFORM_NEED_MORE_INPUT;
- goto done;
- }
- // Initialize streaming.
- hr = BeginStreaming();
- if (FAILED(hr))
- {
- goto done;
- }
- // Get the input buffer.
- hr = m_pSample->ConvertToContiguousBuffer(&pInput);
- if (FAILED(hr))
- {
- goto done;
- }
- // Get the output buffer.
- hr = pOutputSamples[0].pSample->ConvertToContiguousBuffer(&pOutput);
- if (FAILED(hr))
- {
- goto done;
- }
- hr = OnProcessOutput(pInput, pOutput);
- if (FAILED(hr))
- {
- goto done;
- }
- // Set status flags.
- pOutputSamples[0].dwStatus = 0;
- *pdwStatus = 0;
- // Copy the duration and time stamp from the input sample, if present.
- LONGLONG hnsDuration = 0;
- LONGLONG hnsTime = 0;
- if (SUCCEEDED(m_pSample->GetSampleDuration(&hnsDuration)))
- {
- hr = pOutputSamples[0].pSample->SetSampleDuration(hnsDuration);
- if (FAILED(hr))
- {
- goto done;
- }
- }
- if (SUCCEEDED(m_pSample->GetSampleTime(&hnsTime)))
- {
- hr = pOutputSamples[0].pSample->SetSampleTime(hnsTime);
- }
- done:
- SafeRelease(&m_pSample); // Release our input sample.
- SafeRelease(&pInput);
- SafeRelease(&pOutput);
- LeaveCriticalSection(&m_critSec);
- return hr;
- }
- // PRIVATE METHODS
- // All methods that follow are private to this MFT and are not part of the IMFTransform interface.
- // Create a partial media type from our list.
- //
- // dwTypeIndex: Index into the list of preferred media types.
- // ppmt: Receives a pointer to the media type.
- HRESULT OcvImageManipulations::OnGetPartialType(DWORD dwTypeIndex, IMFMediaType **ppmt)
- {
- if (dwTypeIndex >= ARRAYSIZE(g_MediaSubtypes))
- {
- return MF_E_NO_MORE_TYPES;
- }
- IMFMediaType *pmt = NULL;
- HRESULT hr = MFCreateMediaType(&pmt);
- if (FAILED(hr))
- {
- goto done;
- }
- hr = pmt->SetGUID(MF_MT_MAJOR_TYPE, MFMediaType_Video);
- if (FAILED(hr))
- {
- goto done;
- }
- hr = pmt->SetGUID(MF_MT_SUBTYPE, g_MediaSubtypes[dwTypeIndex]);
- if (FAILED(hr))
- {
- goto done;
- }
- *ppmt = pmt;
- (*ppmt)->AddRef();
- done:
- SafeRelease(&pmt);
- return hr;
- }
- // Validate an input media type.
- HRESULT OcvImageManipulations::OnCheckInputType(IMFMediaType *pmt)
- {
- assert(pmt != NULL);
- HRESULT hr = S_OK;
- // If the output type is set, see if they match.
- if (m_pOutputType != NULL)
- {
- DWORD flags = 0;
- hr = pmt->IsEqual(m_pOutputType, &flags);
- // IsEqual can return S_FALSE. Treat this as failure.
- if (hr != S_OK)
- {
- hr = MF_E_INVALIDMEDIATYPE;
- }
- }
- else
- {
- // Output type is not set. Just check this type.
- hr = OnCheckMediaType(pmt);
- }
- return hr;
- }
- // Validate an output media type.
- HRESULT OcvImageManipulations::OnCheckOutputType(IMFMediaType *pmt)
- {
- assert(pmt != NULL);
- HRESULT hr = S_OK;
- // If the input type is set, see if they match.
- if (m_pInputType != NULL)
- {
- DWORD flags = 0;
- hr = pmt->IsEqual(m_pInputType, &flags);
- // IsEqual can return S_FALSE. Treat this as failure.
- if (hr != S_OK)
- {
- hr = MF_E_INVALIDMEDIATYPE;
- }
- }
- else
- {
- // Input type is not set. Just check this type.
- hr = OnCheckMediaType(pmt);
- }
- return hr;
- }
- // Validate a media type (input or output)
- HRESULT OcvImageManipulations::OnCheckMediaType(IMFMediaType *pmt)
- {
- BOOL bFoundMatchingSubtype = FALSE;
- // Major type must be video.
- GUID major_type;
- HRESULT hr = pmt->GetGUID(MF_MT_MAJOR_TYPE, &major_type);
- if (FAILED(hr))
- {
- goto done;
- }
- if (major_type != MFMediaType_Video)
- {
- hr = MF_E_INVALIDMEDIATYPE;
- goto done;
- }
- // Subtype must be one of the subtypes in our global list.
- // Get the subtype GUID.
- GUID subtype;
- hr = pmt->GetGUID(MF_MT_SUBTYPE, &subtype);
- if (FAILED(hr))
- {
- goto done;
- }
- // Look for the subtype in our list of accepted types.
- for (DWORD i = 0; i < ARRAYSIZE(g_MediaSubtypes); i++)
- {
- if (subtype == g_MediaSubtypes[i])
- {
- bFoundMatchingSubtype = TRUE;
- break;
- }
- }
- if (!bFoundMatchingSubtype)
- {
- hr = MF_E_INVALIDMEDIATYPE; // The MFT does not support this subtype.
- goto done;
- }
- // Reject single-field media types.
- UINT32 interlace = MFGetAttributeUINT32(pmt, MF_MT_INTERLACE_MODE, MFVideoInterlace_Progressive);
- if (interlace == MFVideoInterlace_FieldSingleUpper || interlace == MFVideoInterlace_FieldSingleLower)
- {
- hr = MF_E_INVALIDMEDIATYPE;
- }
- done:
- return hr;
- }
- // Set or clear the input media type.
- //
- // Prerequisite: The input type was already validated.
- void OcvImageManipulations::OnSetInputType(IMFMediaType *pmt)
- {
- // if pmt is NULL, clear the type.
- // if pmt is non-NULL, set the type.
- SafeRelease(&m_pInputType);
- m_pInputType = pmt;
- if (m_pInputType)
- {
- m_pInputType->AddRef();
- }
- // Update the format information.
- UpdateFormatInfo();
- }
- // Set or clears the output media type.
- //
- // Prerequisite: The output type was already validated.
- void OcvImageManipulations::OnSetOutputType(IMFMediaType *pmt)
- {
- // If pmt is NULL, clear the type. Otherwise, set the type.
- SafeRelease(&m_pOutputType);
- m_pOutputType = pmt;
- if (m_pOutputType)
- {
- m_pOutputType->AddRef();
- }
- }
- // Initialize streaming parameters.
- //
- // This method is called if the client sends the MFT_MESSAGE_NOTIFY_BEGIN_STREAMING
- // message, or when the client processes a sample, whichever happens first.
- HRESULT OcvImageManipulations::BeginStreaming()
- {
- HRESULT hr = S_OK;
- if (!m_bStreamingInitialized)
- {
- m_bStreamingInitialized = true;
- hr = S_OK;
- }
- return hr;
- }
- // End streaming.
- // This method is called if the client sends an MFT_MESSAGE_NOTIFY_END_STREAMING
- // message, or when the media type changes. In general, it should be called whenever
- // the streaming parameters need to be reset.
- HRESULT OcvImageManipulations::EndStreaming()
- {
- m_bStreamingInitialized = false;
- return S_OK;
- }
- // Generate output data.
- HRESULT OcvImageManipulations::OnProcessOutput(IMFMediaBuffer *pIn, IMFMediaBuffer *pOut)
- {
- BYTE *pDest = NULL; // Destination buffer.
- LONG lDestStride = 0; // Destination stride.
- BYTE *pSrc = NULL; // Source buffer.
- LONG lSrcStride = 0; // Source stride.
- // Helper objects to lock the buffers.
- VideoBufferLock inputLock(pIn);
- VideoBufferLock outputLock(pOut);
- // Stride if the buffer does not support IMF2DBuffer
- LONG lDefaultStride = 0;
- HRESULT hr = GetDefaultStride(m_pInputType, &lDefaultStride);
- if (FAILED(hr))
- {
- return hr;
- }
- // Lock the input buffer.
- hr = inputLock.LockBuffer(lDefaultStride, m_imageHeightInPixels, &pSrc, &lSrcStride);
- if (FAILED(hr))
- {
- return hr;
- }
- // Lock the output buffer.
- hr = outputLock.LockBuffer(lDefaultStride, m_imageHeightInPixels, &pDest, &lDestStride);
- if (FAILED(hr))
- {
- return hr;
- }
- cv::Mat InputFrame(m_imageHeightInPixels + m_imageHeightInPixels/2, m_imageWidthInPixels, CV_8UC1, pSrc, lSrcStride);
- cv::Mat InputGreyScale(InputFrame, cv::Range(0, m_imageHeightInPixels), cv::Range(0, m_imageWidthInPixels));
- cv::Mat OutputFrame(m_imageHeightInPixels + m_imageHeightInPixels/2, m_imageWidthInPixels, CV_8UC1, pDest, lDestStride);
- switch (m_TransformType)
- {
- case Preview:
- {
- InputFrame.copyTo(OutputFrame);
- } break;
- case GrayScale:
- {
- OutputFrame.setTo(cv::Scalar(128));
- cv::Mat OutputGreyScale(OutputFrame, cv::Range(0, m_imageHeightInPixels), cv::Range(0, m_imageWidthInPixels));
- InputGreyScale.copyTo(OutputGreyScale);
- } break;
- case Canny:
- {
- OutputFrame.setTo(cv::Scalar(128));
- cv::Mat OutputGreyScale(OutputFrame, cv::Range(0, m_imageHeightInPixels), cv::Range(0, m_imageWidthInPixels));
- cv::Canny(InputGreyScale, OutputGreyScale, 80, 90);
- } break;
- case Sobel:
- {
- OutputFrame.setTo(cv::Scalar(128));
- cv::Mat OutputGreyScale(OutputFrame, cv::Range(0, m_imageHeightInPixels), cv::Range(0, m_imageWidthInPixels));
- cv::Sobel(InputGreyScale, OutputGreyScale, CV_8U, 1, 1);
- } break;
- case Histogram:
- {
- const int mHistSizeNum = 25;
- const int channels[3][1] = {{0}, {1}, {2}};
- const int mHistSize[] = {25};
- const float baseRabge[] = {0.f,256.f};
- const float* ranges[] = {baseRabge};
- const cv::Scalar mColorsY[] = { cv::Scalar(76), cv::Scalar(149), cv::Scalar(29) };
- const cv::Scalar mColorsUV[] = { cv::Scalar(84, 255), cv::Scalar(43, 21), cv::Scalar(255, 107) };
- cv::Mat OutputY(m_imageHeightInPixels, m_imageWidthInPixels, CV_8UC1, pDest, lDestStride);
- cv::Mat OutputUV(m_imageHeightInPixels/2, m_imageWidthInPixels/2,
- CV_8UC2, pDest+m_imageHeightInPixels*lDestStride, lDestStride);
- cv::Mat BgrFrame;
- InputFrame.copyTo(OutputFrame);
- cv::cvtColor(InputFrame, BgrFrame, cv::COLOR_YUV420sp2BGR);
- int thikness = (int) (BgrFrame.cols / (mHistSizeNum + 10) / 5);
- if(thikness > 5) thikness = 5;
- int offset = (int) ((BgrFrame.cols - (5*mHistSizeNum + 4*10)*thikness)/2);
- // RGB
- for (int c=0; c<3; c++)
- {
- cv::Mat hist;
- cv::calcHist(&BgrFrame, 1, channels[c], cv::Mat(), hist, 1, mHistSize, ranges);
- cv::normalize(hist, hist, BgrFrame.rows/2, 0, cv::NORM_INF);
- for(int h=0; h<mHistSizeNum; h++) {
- cv::Point mP1, mP2;
- // Draw on Y plane
- mP1.x = mP2.x = offset + (c * (mHistSizeNum + 10) + h) * thikness;
- mP1.y = BgrFrame.rows-1;
- mP2.y = mP1.y - 2 - (int)hist.at<float>(h);
- cv::line(OutputY, mP1, mP2, mColorsY[c], thikness);
- // Draw on UV planes
- mP1.x /= 2;
- mP1.y /= 2;
- mP2.x /= 2;
- mP2.y /= 2;
- cv::line(OutputUV, mP1, mP2, mColorsUV[c], thikness/2);
- }
- }
- } break;
- default:
- break;
- }
- // Set the data size on the output buffer.
- hr = pOut->SetCurrentLength(m_cbImageSize);
- return hr;
- }
- // Flush the MFT.
- HRESULT OcvImageManipulations::OnFlush()
- {
- // For this MFT, flushing just means releasing the input sample.
- SafeRelease(&m_pSample);
- return S_OK;
- }
- // Update the format information. This method is called whenever the
- // input type is set.
- HRESULT OcvImageManipulations::UpdateFormatInfo()
- {
- HRESULT hr = S_OK;
- GUID subtype = GUID_NULL;
- m_imageWidthInPixels = 0;
- m_imageHeightInPixels = 0;
- m_cbImageSize = 0;
- if (m_pInputType != NULL)
- {
- hr = m_pInputType->GetGUID(MF_MT_SUBTYPE, &subtype);
- if (FAILED(hr))
- {
- goto done;
- }
- if (subtype != MFVideoFormat_NV12)
- {
- hr = E_UNEXPECTED;
- goto done;
- }
- hr = MFGetAttributeSize(m_pInputType, MF_MT_FRAME_SIZE, &m_imageWidthInPixels, &m_imageHeightInPixels);
- if (FAILED(hr))
- {
- goto done;
- }
- // Calculate the image size for YUV NV12 image(not including padding)
- m_cbImageSize = (m_imageHeightInPixels + m_imageHeightInPixels/2)*m_imageWidthInPixels;
- }
- done:
- return hr;
- }
- // Get the default stride for a video format.
- HRESULT GetDefaultStride(IMFMediaType *pType, LONG *plStride)
- {
- LONG lStride = 0;
- // Try to get the default stride from the media type.
- HRESULT hr = pType->GetUINT32(MF_MT_DEFAULT_STRIDE, (UINT32*)&lStride);
- if (FAILED(hr))
- {
- // Attribute not set. Try to calculate the default stride.
- GUID subtype = GUID_NULL;
- UINT32 width = 0;
- UINT32 height = 0;
- // Get the subtype and the image size.
- hr = pType->GetGUID(MF_MT_SUBTYPE, &subtype);
- if (SUCCEEDED(hr))
- {
- hr = MFGetAttributeSize(pType, MF_MT_FRAME_SIZE, &width, &height);
- }
- if (SUCCEEDED(hr))
- {
- if (subtype == MFVideoFormat_NV12)
- {
- lStride = width;
- }
- else if (subtype == MFVideoFormat_YUY2 || subtype == MFVideoFormat_UYVY)
- {
- lStride = ((width * 2) + 3) & ~3;
- }
- else
- {
- hr = E_INVALIDARG;
- }
- }
- // Set the attribute for later reference.
- if (SUCCEEDED(hr))
- {
- (void)pType->SetUINT32(MF_MT_DEFAULT_STRIDE, UINT32(lStride));
- }
- }
- if (SUCCEEDED(hr))
- {
- *plStride = lStride;
- }
- return hr;
- }
|