mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2024-11-26 04:12:00 -08:00
29 lines
635 B
C#
29 lines
635 B
C#
/*
|
|
* QuantizeMode.cs
|
|
* Copyright (c) 2007-2009 kbinani
|
|
*
|
|
* This file is part of LipSync.
|
|
*
|
|
* LipSync is free software; you can redistribute it and/or
|
|
* modify it under the terms of the BSD License.
|
|
*
|
|
* LipSync is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
*/
|
|
namespace LipSync {
|
|
|
|
/// <summary>
|
|
/// 音符の量子化設定
|
|
/// </summary>
|
|
public enum QuantizeMode {
|
|
q04,
|
|
q08,
|
|
q16,
|
|
q32,
|
|
q64,
|
|
off
|
|
}
|
|
|
|
}
|