CodecOperationStatus Enumeration |
Contains status information of common functions in encoders and decoders.
Namespace: StreamCodersAssembly: MediaBase (in MediaBase.dll) Version: 2.0.5.0 (2.0.5.0)
Syntax public enum CodecOperationStatus
Public Enumeration CodecOperationStatus
public enum class CodecOperationStatus
type CodecOperationStatus
Members
| Member name | Value | Description |
---|
| NotInitialized | 0 |
Indicates an un-initialized state.
|
| Success | 1 |
Indicates that the operation was successful.
|
| Failed | 2 |
Indicates that the operation has failed.
|
| NullArgumentNotAllowed | 3 |
Indicates that the argument passed was null.
|
| NeedsMoreData | 4 |
Indicates that operation needs more data in order to complete.
|
| BadParameters | 5 |
The passed input data object had some invalid meta data.
|
See Also