Description
Gets or sets the thread processing yield time for asynchronous streaming of video over common protocols like udp. Setting a high value may increase performance, but may cause frames or packets to drop, effecting visual quality. A lower value will ensure high priority processing of the stream, and thus less visual degradation, but may affect performance.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property PacketAcquirementYieldTime() As Integer
|
[C#] |
---|
public int PacketAcquirementYieldTime {get; set;}
|
[Managed C++] |
---|
public: __property int get_PacketAcquirementYieldTime(); public: __property void set_PacketAcquirementYieldTime(
int
);
|
[Unmanaged C++] |
---|
public: HRESULT get_PacketAcquirementYieldTime(
int * pRetVal
);
public: HRESULT put_PacketAcquirementYieldTime(
int PacketAcquirementYieldTime
);
|
[Java] |
---|
public Integer getPacketAcquirementYieldTime();
public void setPacketAcquirementYieldTime(
Integer
);
|
See Also