[Julius-cvs 795] CVS update: julius4/julius

アーカイブの一覧に戻る

sumom****@users***** sumom****@users*****
2013年 6月 12日 (水) 18:02:35 JST


Index: julius4/julius/output_file.c
diff -u julius4/julius/output_file.c:1.4 julius4/julius/output_file.c:1.5
--- julius4/julius/output_file.c:1.4	Fri Jul 27 17:44:49 2012
+++ julius4/julius/output_file.c	Wed Jun 12 18:02:34 2013
@@ -12,7 +12,7 @@
  * @author Akinobu Lee
  * @date   Wed Dec 12 11:07:46 2007
  * 
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
  * 
  */
 /*
@@ -104,6 +104,9 @@
       case J_RESULT_STATUS_REJECT_SHORT:
 	fprintf(fp, "<input rejected by short input>\n");
 	break;
+      case J_RESULT_STATUS_REJECT_LONG:
+	fprintf(fp, "<input rejected by long input>\n");
+	break;
       case J_RESULT_STATUS_FAIL:
 	fprintf(fp, "<search failed>\n");
 	break;
Index: julius4/julius/output_module.c
diff -u julius4/julius/output_module.c:1.8 julius4/julius/output_module.c:1.9
--- julius4/julius/output_module.c:1.8	Fri Jul 27 17:44:49 2012
+++ julius4/julius/output_module.c	Wed Jun 12 18:02:34 2013
@@ -12,7 +12,7 @@
  * @author Akinobu Lee
  * @date   Tue Sep 06 14:46:49 2005
  *
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
  * 
  */
 /*
@@ -413,6 +413,9 @@
       case J_RESULT_STATUS_REJECT_SHORT:
 	module_send(module_sd, "<REJECTED REASON=\"too short input\"");
 	break;
+      case J_RESULT_STATUS_REJECT_LONG:
+	module_send(module_sd, "<REJECTED REASON=\"too long input\"");
+	break;
       case J_RESULT_STATUS_FAIL:
 	module_send(module_sd, "<RECOGFAIL");
 	break;
Index: julius4/julius/output_stdout.c
diff -u julius4/julius/output_stdout.c:1.10 julius4/julius/output_stdout.c:1.11
--- julius4/julius/output_stdout.c:1.10	Fri Jul 27 17:44:49 2012
+++ julius4/julius/output_stdout.c	Wed Jun 12 18:02:34 2013
@@ -12,7 +12,7 @@
  * @author Akinobu Lee
  * @date   Tue Sep 06 17:18:46 2005
  *
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
  * 
  */
 /*
@@ -827,6 +827,9 @@
       case J_RESULT_STATUS_REJECT_SHORT:
 	printf("<input rejected by short input>\n");
 	break;
+      case J_RESULT_STATUS_REJECT_LONG:
+	printf("<input rejected by long input>\n");
+	break;
       case J_RESULT_STATUS_FAIL:
 	printf("<search failed>\n");
 	break;



Julius-cvs メーリングリストの案内
アーカイブの一覧に戻る