// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Defines the MarshalingConstants type.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop
{
///
/// The marshaling constants.
///
public static class MarshalingConstants
{
#if X64
public const int JobPaddingBytes = 49264;
public const int AudioPaddingBytes = 49208;
#else
///
/// Job Padding Bytes
///
public const int JobPaddingBytes = 49216;
///
/// Audio Padding Bytes
///
public const int AudioPaddingBytes = 49180;
#endif
}
}