blob: 0476b167349bb8847326f294f17a0cc538562ccb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="Rotation.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Model.Encoding
{
/// <summary>
/// Possible picture rotations.
/// </summary>
public enum PictureRotation
{
None = 0,
Clockwise90,
Clockwise180,
Clockwise270
}
}
|