Commit 02325ccb authored by Giovanni Mascellani's avatar Giovanni Mascellani Committed by Alexandre Julliard

winegstreamer: Advertise support for thinned or reverse playback.

parent 5ba8f0d7
......@@ -933,13 +933,7 @@ static HRESULT WINAPI media_source_rate_support_GetSlowestRate(IMFRateSupport *i
{
TRACE("%p, %d, %d, %p.\n", iface, direction, thin, rate);
if (direction == MFRATE_REVERSE)
return MF_E_REVERSE_UNSUPPORTED;
if (thin)
return MF_E_THINNING_UNSUPPORTED;
*rate = 1.0f;
*rate = direction == MFRATE_FORWARD ? 1.0f : -1.0f;
return S_OK;
}
......@@ -948,31 +942,21 @@ static HRESULT WINAPI media_source_rate_support_GetFastestRate(IMFRateSupport *i
{
TRACE("%p, %d, %d, %p.\n", iface, direction, thin, rate);
if (direction == MFRATE_REVERSE)
return MF_E_REVERSE_UNSUPPORTED;
if (thin)
return MF_E_THINNING_UNSUPPORTED;
*rate = 1.0f;
*rate = direction == MFRATE_FORWARD ? 1.0f : -1.0f;
return S_OK;
}
static HRESULT WINAPI media_source_rate_support_IsRateSupported(IMFRateSupport *iface, BOOL thin, float rate, float *nearest_support_rate)
{
TRACE("%p, %d, %f, %p.\n", iface, thin, rate, nearest_support_rate);
const float supported_rate = rate >= 0.0f ? 1.0f : -1.0f;
if (rate < 0.0f)
return MF_E_REVERSE_UNSUPPORTED;
if (thin)
return MF_E_THINNING_UNSUPPORTED;
TRACE("%p, %d, %f, %p.\n", iface, thin, rate, nearest_support_rate);
if (nearest_support_rate)
*nearest_support_rate = 1.0f;
*nearest_support_rate = supported_rate;
return rate == 1.0f ? S_OK : MF_E_UNSUPPORTED_RATE;
return rate == supported_rate ? S_OK : MF_E_UNSUPPORTED_RATE;
}
static const IMFRateSupportVtbl media_source_rate_support_vtbl =
......
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