Click here to Skip to main content
15,895,011 members
Articles / Multimedia / DirectX

DirectShow Filters Development Part 3: Transform Filters

Rate me:
Please Sign up or sign in to vote.
4.83/5 (20 votes)
15 Mar 2011CPOL6 min read 129.1K   4.6K   51  
A text overlay filter and a JPEG/JPEG2000 encoder using transform filters.
#include "TextOverlay.h"

static inline HRESULT GetPixleFormat(int bpp, PixelFormat* pixFmt)
{
	switch(bpp)
	{
		case 15:
			*pixFmt = PixelFormat16bppRGB555;
			return S_OK;

		case 16:
			*pixFmt = PixelFormat16bppRGB565;
			return S_OK;

		case 24:
			*pixFmt = PixelFormat24bppRGB;
			return S_OK;

		case 32:
			*pixFmt = PixelFormat32bppRGB;
			return S_OK;

		default:
			return E_FAIL;
	}
}

CTextOverlay::CTextOverlay(LPUNKNOWN pUnk, HRESULT *phr)
	: CTransInPlaceFilter(FILTER_NAME, pUnk, CLSID_TextOverlay, phr)
{
	GdiplusStartupInput gdiplusStartupInput; 
    GdiplusStartup(&m_gdiplusToken, &gdiplusStartupInput, NULL);
}

CTextOverlay::~CTextOverlay(void)
{
	GdiplusShutdown(m_gdiplusToken);
}

HRESULT CTextOverlay::CheckInputType(const CMediaType* mtIn)
{
	CAutoLock lock(m_pLock);

    if (mtIn->majortype != MEDIATYPE_Video)
    {
        return E_FAIL;
    }

	if(mtIn->subtype != MEDIASUBTYPE_RGB555 &&
	   mtIn->subtype != MEDIASUBTYPE_RGB565 &&
	   mtIn->subtype != MEDIASUBTYPE_RGB24 &&
	   mtIn->subtype != MEDIASUBTYPE_RGB32)
	{
		return E_FAIL;
	}

    if ((mtIn->formattype == FORMAT_VideoInfo) &&
        (mtIn->cbFormat >= sizeof(VIDEOINFOHEADER)) &&
        (mtIn->pbFormat != NULL))
    {
        return S_OK;
    }
        
    return E_FAIL;
}

HRESULT CTextOverlay::SetMediaType(PIN_DIRECTION direction, const CMediaType *pmt)
{
	if(direction == PINDIR_INPUT)
	{
		VIDEOINFOHEADER* pvih = (VIDEOINFOHEADER*)pmt->pbFormat;
		m_videoInfo = *pvih;
		HRESULT hr = GetPixleFormat(m_videoInfo.bmiHeader.biBitCount, &m_pixFmt);
		if(FAILED(hr))
		{
			return hr;
		}

		BITMAPINFOHEADER bih = m_videoInfo.bmiHeader;
		m_stride = bih.biBitCount / 8 * bih.biWidth;
	}

	return S_OK;
}
	 
HRESULT CTextOverlay::Transform(IMediaSample *pSample)
{
	CAutoLock lock(m_pLock);

	BYTE* pBuffer = NULL;
	Status s = Ok;
	map<DWORD, Overlay*>::iterator it;

	HRESULT hr = pSample->GetPointer(&pBuffer);
	if(FAILED(hr))
	{
		return hr;
	}

	BITMAPINFOHEADER bih = m_videoInfo.bmiHeader;
	Bitmap bmp(bih.biWidth, bih.biHeight, m_stride, m_pixFmt, pBuffer);
	Graphics g(&bmp);

	for ( it = m_overlays.begin() ; it != m_overlays.end(); it++ )
	{
		Overlay* over = (*it).second;
		SolidBrush brush(over->color);
		Font font(FontFamily::GenericSerif(), over->fontSize);
		s = g.DrawString(over->text, -1, &font, over->pos, StringFormat::GenericDefault(), &brush);
		if(s != Ok)
		{
			TCHAR msg[100];
			wsprintf(L"Failed to draw text : %s", over->text);
			::OutputDebugString(msg);
		}
	}

	return S_OK;
}

CUnknown *WINAPI CTextOverlay::CreateInstance(LPUNKNOWN pUnk, HRESULT *phr)
{
	CTextOverlay *overlay = new CTextOverlay(pUnk, phr);
	if (!overlay) 
	{
		if (phr) 
			*phr = E_OUTOFMEMORY;
	}

	return overlay;
}

STDMETHODIMP CTextOverlay::NonDelegatingQueryInterface(REFIID riid, void **ppv)
{
	CheckPointer(ppv, E_POINTER);

	if(riid == IID_ITextAdditor) 
	{
		return GetInterface((ITextAdditor*) this, ppv);
	} 
	
	return CTransInPlaceFilter::NonDelegatingQueryInterface(riid, ppv);
}

HRESULT CTextOverlay::AddTextOverlay(WCHAR* text, DWORD id, RECT position, COLORREF color, float fontSize)
{
	CAutoLock lock(m_pLock);

	if(m_overlays.find(id) != m_overlays.end()) // id already in the map
	{
		return E_INVALIDARG;
	}

	Overlay* overlay = new Overlay(text);
	overlay->color.SetFromCOLORREF(color);
	overlay->fontSize = fontSize;
	RectF rcBounds(position.left, position.top, position.right, position.bottom);
	overlay->pos = rcBounds;

	m_overlays[id] = overlay;

	return S_OK;
}

HRESULT CTextOverlay::Clear(void)
{
	CAutoLock lock(m_pLock);

	map<DWORD, Overlay*>::iterator it;
	for ( it = m_overlays.begin() ; it != m_overlays.end(); it++ )
	{
		delete (*it).second;
	}

	m_overlays.clear();

	return S_OK;
}

HRESULT CTextOverlay::Remove(DWORD id)
{
	CAutoLock lock(m_pLock);

	delete m_overlays[id];
	m_overlays.erase(id);

	return S_OK;
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions