Julius 4.2
plugin/audio_postprocess.c
説明を見る。
00001 
00035 /***************************************************************************/
00036 
00037 #include <stdio.h>
00038 #include <string.h>
00039 #include "plugin_defs.h"
00040 
00041 #define PLUGIN_TITLE "audio postprocess plugin for Julius"
00042 
00065 int
00066 initialize()
00067 {
00068   return 0;
00069 }
00070 
00107 int
00108 get_plugin_info(int opcode, char *buf, int buflen)
00109 {
00110   switch(opcode) {
00111   case 0:
00112     /* plugin description string */
00113     strncpy(buf, PLUGIN_TITLE, buflen);
00114     break;
00115   }
00116 
00117   return 0;
00118 }
00119 
00162 void
00163 adin_postprocess(SP16 *buf, int len)
00164 {
00165   //printf("%d\n", len);
00166 }
00167 /* end of file */