Description
Gets or sets a value indicating if frames
should be dropped if video processing can not keep up with a video
stream. If this is set to false, the video quality may degrade when
the processing load is too high. Alternatively, when set to true,
frames will be dropped, but each frame that is processed should
have an improved visual quality.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
Public Property AllowFrameDrop() As Boolean
|
[C#] |
public bool AllowFrameDrop {get; set;}
|
[Managed C++] |
public: __property bool get_AllowFrameDrop();
public: __property void set_AllowFrameDrop(
bool
);
|
[Unmanaged C++] |
public: HRESULT get_AllowFrameDrop(
VARIANT_BOOL * pRetVal
);
public: HRESULT put_AllowFrameDrop(
VARIANT_BOOL NewAllowFrameDrop
);
|
[Java] |
public bool getAllowFrameDrop();public void setAllowFrameDrop(
bool
);
|
See Also