MFPKEY_ASFMediaSource_ApproxSeek property
Specifies whether the ASF media source uses approximate seeking.
| Data type |
PROPVARIANT type (vt) |
PROPVARIANT member |
| VARIANT_BOOL |
VT_BOOL |
boolVal |
Syntax
DECLSPEC_SELECTANY PROPERTYKEY MFPKEY_ASFMediaSource_ApproxSeek = { {0xb4cd270f,0x244d,0x4969,0xbb,0x92,0x3f,0x0f,0xb8,0x31,0x6f,0x10}, 0x01 }
Remarks
Applications can use this property to configure the ASF media source. To set the property, pass an IPropertyStore pointer to the source resolver. For more information, see Configuring a Media Source.
The ASF media source handles seeking as follows:
- If the value of this property is VARIANT_TRUE, the media source uses approximate seeking, which is less accurate but faster than exact seeking.
- If the value is VARIANT_FALSE and the ASF file has an index, the media source uses exact seeking.
- If the ASF file does not contain an index, the media source uses approxmate seeking unless the MFPKEY_ASFMediaSource_IterativeSeekIfNoIndex property is set to VARIANT_TRUE.
- If the ASF file does not contain an index and the MFPKEY_ASFMediaSource_IterativeSeekIfNoIndex property is VARIANT_TRUE, the media source uses iterative seeking. Iterative seeking is more accurate but slower than approximate seeking (but generally less accurate than exact seeking).
Note Requires Windows 7.
The default value of this property is VARIANT_FALSE.
Requirements
Header: Declared in mfidl.h.