blob: 8ff112c35a9c79fbcb27791d3ecd759279e16c56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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; }
public int Bitrate { get; set; }
public Mixdown Mixdown { get; set; }
public string SampleRate { get; set; }
public double Drc { get; set; }
}
}
|