OSDN Git Service

cf42f3ca61bfda19ee5a49c70923fccf4fa31021
[handbrake-jp/handbrake-jp-git.git] / win / C# / HandBrake.ApplicationServices / Model / Encoding / VideoEncodeMode.cs
1 /*  VideoEncoderMode.cs $\r
2     This file is part of the HandBrake source code.\r
3     Homepage: <http://handbrake.fr>.\r
4     It may be used under the terms of the GNU General Public License. */\r
5 \r
6 namespace HandBrake.ApplicationServices.Model.Encoding\r
7 {\r
8     /// <summary>\r
9     /// The Mode of Video Encoding. Bitrate, Filesize or Quality\r
10     /// </summary>\r
11     public enum VideoEncodeMode\r
12     {\r
13         TargetSize = 0,\r
14         AverageBitrate,\r
15         ConstantQuality\r
16     }\r
17 }\r