blob: 810994ba817fb4b63595c13585799b3bca143b3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="HBVideoEncoder.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>
// <summary>
// The hb video encoder.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Model.Encoding
{
using System.Collections.Generic;
using HandBrake.Interop.HbLib;
using HandBrake.Interop.Helpers;
/// <summary>
/// The hb video encoder.
/// </summary>
public class HBVideoEncoder
{
/// <summary>
/// Gets or sets the compatible containers.
/// </summary>
public int CompatibleContainers { get; set; }
/// <summary>
/// Gets or sets the display name.
/// </summary>
public string DisplayName { get; set; }
/// <summary>
/// Gets or sets the id.
/// </summary>
public int Id { get; set; }
/// <summary>
/// Gets or sets the short name.
/// </summary>
public string ShortName { get; set; }
/// <summary>
/// Gets the list of presets this encoder supports. (null if the encoder doesn't support presets)
/// </summary>
public List<string> Presets
{
get
{
return InteropUtilities.ToStringListFromArrayPtr(HBFunctions.hb_video_encoder_get_presets(this.Id));
}
}
/// <summary>
/// Gets the list of tunes this encoder supports. (null if the encoder doesn't support tunes)
/// </summary>
public List<string> Tunes
{
get
{
return InteropUtilities.ToStringListFromArrayPtr(HBFunctions.hb_video_encoder_get_tunes(this.Id));
}
}
/// <summary>
/// Gets the list of profiles this encoder supports. (null if the encoder doesn't support profiles)
/// </summary>
public List<string> Profiles
{
get
{
return InteropUtilities.ToStringListFromArrayPtr(HBFunctions.hb_video_encoder_get_profiles(this.Id));
}
}
/// <summary>
/// Gets the list of levels this encoder supports. (null if the encoder doesn't support levels)
/// </summary>
public List<string> Levels
{
get
{
return InteropUtilities.ToStringListFromArrayPtr(HBFunctions.hb_video_encoder_get_levels(this.Id));
}
}
}
}
|