Reply to thread

Here's how to compile the directshow filters:


http://wiki.team-mediaportal.com/MediaPortalDevelopment/CompilingMediaPortal#head-1886ef7825585c84a5ad9214f0e4a37d8a8a95d5


Here are the needed changes to enable the teletext support in TsReader:


TsReader.cpp


#1 CBasePin * CTsReaderFilter::GetPin(int n)


change "//return m_pTeletextPin;" to "return m_pTeletextPin;"


#2 int CTsReaderFilter::GetPinCount()


change "return 3;" to "return 4;"


Top Bottom