20 lines
552 B
C#
20 lines
552 B
C#
namespace Client.StreamLibrary
|
|
{
|
|
public enum CodecOption
|
|
{
|
|
/// <summary>
|
|
/// The Previous and next image size must be equal
|
|
/// </summary>
|
|
RequireSameSize,
|
|
/// <summary>
|
|
/// If the codec is having a stream buffer
|
|
/// </summary>
|
|
HasBuffers,
|
|
/// <summary>
|
|
/// The image will be disposed by the codec and shall not be disposed by the user
|
|
/// </summary>
|
|
AutoDispose,
|
|
/// <summary> No codec options were used </summary>
|
|
None
|
|
};
|
|
} |