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