| 33 | const double CSubPicQueueImpl::DEFAULT_FPS = 24/1.001; |
| 34 | |
| 35 | CSubPicQueueImpl::CSubPicQueueImpl(ISubPicAllocator* pAllocator, HRESULT* phr) |
| 36 | : CUnknown(L"CSubPicQueueImpl", nullptr) |
| 37 | , m_pAllocator(pAllocator) |
| 38 | { |
| 39 | if (phr) { |
| 40 | *phr = S_OK; |
| 41 | } |
| 42 | |
| 43 | if (!m_pAllocator) { |
| 44 | if (phr) { |
| 45 | *phr = E_FAIL; |
| 46 | } |
| 47 | return; |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | CSubPicQueueImpl::~CSubPicQueueImpl() |
| 52 | { |
nothing calls this directly
no outgoing calls
no test coverage detected