24 lines
613 B
C#
24 lines
613 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace 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
|
|
};
|
|
} |