// --------------------------------------------------------------------------------------------------------------------
// 
//   This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// 
// 
//   Possible picture rotations.
// 
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Interop.Model.Encoding
{
    /// 
    /// Possible picture rotations.
    /// 
    public enum PictureRotation
    {
        None = 0,
        Clockwise90,
        Clockwise180,
        Clockwise270
    }
}