blob: 0821749b55fe9548e982eccfe5b88ee7d3d887a2 (
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
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HandBrake.Interop
{
public class AudioEncoding
{
public int InputNumber { get; set; }
public AudioEncoder Encoder { get; set; }
/// <summary>
/// Gets or sets the bitrate (in kbps) of this track.
/// </summary>
public int Bitrate { get; set; }
public Mixdown Mixdown { get; set; }
/// <summary>
/// Obsolete. Use SampleRateRaw instead.
/// </summary>
[Obsolete("This property is ignored and only exists for backwards compatibility. Use SampleRateRaw instead.")]
public string SampleRate { get; set; }
/// <summary>
/// Gets or sets the sample rate in Hz.
/// </summary>
public int SampleRateRaw { get; set; }
public int Gain { get; set; }
public double Drc { get; set; }
public string Name { get; set; }
}
}
|