// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the SubtitleType type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.Interop.SourceData { /// /// Subtitle Type. /// 0: Picture /// 1: Text /// public enum SubtitleType { /// /// Picture Subtitle /// Picture, /// /// Text Subtitle /// Text } }