blob: 478e309a6c5763ea9b778fbcbe7285562fad6e2a (
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
87
88
89
90
91
92
93
94
95
96
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="HBAudioEncoder.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 audio encoder.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Model.Encoding
{
using HandBrake.Interop.HbLib;
/// <summary>
/// The hb audio encoder.
/// </summary>
public class HBAudioEncoder
{
#region Public Properties
/// <summary>
/// Gets or sets the compatible containers.
/// </summary>
public int CompatibleContainers { get; set; }
/// <summary>
/// Gets or sets the compression limits.
/// </summary>
public RangeLimits CompressionLimits { get; set; }
/// <summary>
/// Gets or sets the default compression.
/// </summary>
public float DefaultCompression { get; set; }
/// <summary>
/// Gets or sets the default quality.
/// </summary>
public float DefaultQuality { 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 a value indicating whether is passthrough.
/// </summary>
public bool IsPassthrough
{
get
{
return (this.Id & NativeConstants.HB_ACODEC_PASS_FLAG) > 0;
}
}
/// <summary>
/// Gets or sets the quality limits.
/// </summary>
public RangeLimits QualityLimits { get; set; }
/// <summary>
/// Gets or sets the short name.
/// </summary>
public string ShortName { get; set; }
/// <summary>
/// Gets a value indicating whether supports compression.
/// </summary>
public bool SupportsCompression
{
get
{
return this.CompressionLimits.High >= 0;
}
}
/// <summary>
/// Gets a value indicating whether supports quality.
/// </summary>
public bool SupportsQuality
{
get
{
return this.QualityLimits.High >= 0;
}
}
#endregion
}
}
|