| 861 | } |
| 862 | |
| 863 | STDMETHODIMP_(REFERENCE_TIME) CDecQuickSync::GetFrameDuration() |
| 864 | { |
| 865 | CMediaType &mt = m_pCallback->GetInputMediaType(); |
| 866 | REFERENCE_TIME rtDuration = 0; |
| 867 | videoFormatTypeHandler(mt.Format(), mt.FormatType(), nullptr, &rtDuration, nullptr, nullptr); |
| 868 | return (m_bInterlaced && m_bDI && m_pSettings->GetHWAccelDeintOutput() == DeintOutput_FramePerField) |
| 869 | ? rtDuration / 2 |
| 870 | : rtDuration; |
| 871 | } |
| 872 | |
| 873 | STDMETHODIMP_(BOOL) CDecQuickSync::IsInterlaced(BOOL bAllowGuess) |
| 874 | { |
nothing calls this directly
no test coverage detected