summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/HandBrakeInterop/MarshalingConstants.cs
blob: df7c953ad0fc8318807c3274614e899e1d8f2dc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace HandBrake.Interop
{
	public static class MarshalingConstants
	{
#if X64
		public const int JobPaddingBytes = 24696;
		public const int AudioPaddingBytes = 24640;
#else
		public const int JobPaddingBytes = 24644;
		public const int AudioPaddingBytes = 24608;
#endif
	}
}