Commit b0288ab5 authored by Damien Fouilleul's avatar Damien Fouilleul

- directshow: added fps in debug info

parent ff6739d0
...@@ -614,10 +614,11 @@ STDMETHODIMP CapturePin::QueryAccept( const AM_MEDIA_TYPE *pmt ) ...@@ -614,10 +614,11 @@ STDMETHODIMP CapturePin::QueryAccept( const AM_MEDIA_TYPE *pmt )
} }
msg_Dbg( p_input, "CapturePin::QueryAccept [OK] " msg_Dbg( p_input, "CapturePin::QueryAccept [OK] "
"(width=%ld, height=%ld, chroma=%4.4s)", "(width=%ld, height=%ld, chroma=%4.4s, fps=%f)",
((VIDEOINFOHEADER *)pmt->pbFormat)->bmiHeader.biWidth, ((VIDEOINFOHEADER *)pmt->pbFormat)->bmiHeader.biWidth,
((VIDEOINFOHEADER *)pmt->pbFormat)->bmiHeader.biHeight, ((VIDEOINFOHEADER *)pmt->pbFormat)->bmiHeader.biHeight,
(char *)&i_fourcc ); (char *)&i_fourcc,
10000000.0f/((float)((VIDEOINFOHEADER *)pmt->pbFormat)->AvgTimePerFrame) );
} }
else if( pmt->majortype == MEDIATYPE_Audio ) else if( pmt->majortype == MEDIATYPE_Audio )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment