フィルタの書式 のバックアップソース(No.1)

**AviSynthのマニュアル [#b5a3942a]
//AviSynthの内蔵フィルタのマニュアルは、たいていの場合、以下のような順番で書かれています。
//
// 書式
// 
// 説明
// 
// 使用例(ない場合もある)
//
//まず、フィルタ(関数)の書式(フォーマット)、そして、そのフィルタの説明、最後にフィルタの使用例があります。書式とは、フィルタフィルタによっては、使用例がない場合もあります。
//
//たとえば、MessageClipフィルタのマニュアル((http://www.avisynth.org/MessageClipから転載。))を見てみると、次のように書かれています。
//
// MessageClip(string message, int width, int height, int shrink, int text_color, int halo_color, int bg_color)
// 
// MessageClip produces a clip containing a text message; used internally for error reporting. Arial font is used, size between 24 points and 9 points chosen to fit, if possible, in the width by height clip.
// 
// If shrink is true, the clip resolution is then reduced, if necessary, to fit the text.
//
//1行目のMessageClip(string message, ...)までが、MessageClipフィルタの書式です。それ以降は、同フィルタの説明です。MessageClipフィルタの場合、使用例はありません。
//
**フィルタの書式 [#ccbc90c4]
// フィルタ名(引数リスト)

// 引数型 引数名
//      ↑
// (半角スペース)

// フィルタ名(引数型1 引数名1, 引数型2 引数名2, 引数型3 引数名3, ...)

//引数が複数ある場合は、コンマ区切りで、つづけて書きます。引数の数は、フィルタによって異なります。

// MessageClip(string message, int width, int height, int shrink, int text_color, int halo_color, int bg_color)

※作成中