|
From: Keiichiro O. <ur...@us...> - 2014-12-11 05:09:09
|
Update of /cvsroot/open-jtalk/open_jtalk/src/njd_set_pronunciation In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv13930/njd_set_pronunciation Modified Files: Makefile.am njd_set_pronunciation.c njd_set_pronunciation.h njd_set_pronunciation_rule_ascii_for_euc_jp.h njd_set_pronunciation_rule_ascii_for_shift_jis.h njd_set_pronunciation_rule_ascii_for_utf_8.h njd_set_pronunciation_rule_euc_jp.h njd_set_pronunciation_rule_shift_jis.h njd_set_pronunciation_rule_utf_8.h Log Message: assume unknown word as fillter Index: njd_set_pronunciation_rule_ascii_for_utf_8.h =================================================================== RCS file: /cvsroot/open-jtalk/open_jtalk/src/njd_set_pronunciation/njd_set_pronunciation_rule_ascii_for_utf_8.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** njd_set_pronunciation_rule_ascii_for_utf_8.h 11 Dec 2013 06:33:06 -0000 1.2 --- njd_set_pronunciation_rule_ascii_for_utf_8.h 11 Dec 2014 05:09:07 -0000 1.3 *************** *** 5,9 **** /* ----------------------------------------------------------------- */ /* */ ! /* Copyright (c) 2008-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 5,9 ---- /* ----------------------------------------------------------------- */ /* */ ! /* Copyright (c) 2008-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ *************** *** 143,146 **** --- 143,147 ---- "\xe3\x83\x86\xe3\x83\xa5", "\xe3\x83\x86\xe3\x83\xa5", "1", "\xe3\x83\x86\xe3\x83\xa3", "\xe3\x83\x86\xe3\x83\xa3", "1", + "\xe3\x83\x86\xe3\x82\xa7", "\xe3\x83\x86\xe3\x82\xa7", "1", "\xe3\x83\x86\xe3\x82\xa3", "\xe3\x83\x86\xe3\x82\xa3", "1", "\xe3\x83\x86", "\xe3\x83\x86", "1", *************** *** 294,297 **** --- 295,299 ---- "\xe3\x81\xa6\xe3\x82\x85", "\xe3\x83\x86\xe3\x83\xa5", "1", "\xe3\x81\xa6\xe3\x82\x83", "\xe3\x83\x86\xe3\x83\xa3", "1", + "\xe3\x81\xa6\xe3\x81\x87", "\xe3\x83\x86\xe3\x82\xa7", "1", "\xe3\x81\xa6\xe3\x81\x83", "\xe3\x83\x86\xe3\x82\xa3", "1", "\xe3\x81\xa6", "\xe3\x83\x86", "1", *************** *** 514,517 **** --- 516,521 ---- }; + #define NJD_SET_PRONUNCIATION_FILLER "\xe3\x83\x95\xe3\x82\xa3\xe3\x83\xa9\xe3\x83\xbc" + #define NJD_SET_PRONUNCIATION_U "\xe3\x82\xa6" #define NJD_SET_PRONUNCIATION_DOUSHI "\xe5\x8b\x95\xe8\xa9\x9e" Index: njd_set_pronunciation_rule_ascii_for_euc_jp.h =================================================================== RCS file: /cvsroot/open-jtalk/open_jtalk/src/njd_set_pronunciation/njd_set_pronunciation_rule_ascii_for_euc_jp.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** njd_set_pronunciation_rule_ascii_for_euc_jp.h 11 Dec 2013 06:33:06 -0000 1.2 --- njd_set_pronunciation_rule_ascii_for_euc_jp.h 11 Dec 2014 05:09:07 -0000 1.3 *************** *** 5,9 **** /* ----------------------------------------------------------------- */ /* */ ! /* Copyright (c) 2008-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 5,9 ---- /* ----------------------------------------------------------------- */ /* */ ! /* Copyright (c) 2008-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ *************** *** 143,146 **** --- 143,147 ---- "\xa5\xc6\xa5\xe5", "\xa5\xc6\xa5\xe5", "1", "\xa5\xc6\xa5\xe3", "\xa5\xc6\xa5\xe3", "1", + "\xa5\xc6\xa5\xa7", "\xa5\xc6\xa5\xa7", "1", "\xa5\xc6\xa5\xa3", "\xa5\xc6\xa5\xa3", "1", "\xa5\xc6", "\xa5\xc6", "1", *************** *** 294,297 **** --- 295,299 ---- "\xa4\xc6\xa4\xe5", "\xa5\xc6\xa5\xe5", "1", "\xa4\xc6\xa4\xe3", "\xa5\xc6\xa5\xe3", "1", + "\xa4\xc6\xa4\xa7", "\xa5\xc6\xa5\xa7", "1", "\xa4\xc6\xa4\xa3", "\xa5\xc6\xa5\xa3", "1", "\xa4\xc6", "\xa5\xc6", "1", *************** *** 514,517 **** --- 516,521 ---- }; + #define NJD_SET_PRONUNCIATION_FILLER "\xa5\xd5\xa5\xa3\xa5\xe9\xa1\xbc" + #define NJD_SET_PRONUNCIATION_U "\xa5\xa6" #define NJD_SET_PRONUNCIATION_DOUSHI "\xc6\xb0\xbb\xec" Index: Makefile.am =================================================================== RCS file: /cvsroot/open-jtalk/open_jtalk/src/njd_set_pronunciation/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Makefile.am 11 Dec 2013 05:52:52 -0000 1.3 --- Makefile.am 11 Dec 2014 05:09:07 -0000 1.4 *************** *** 6,10 **** MAINTAINERCLEANFILES = Makefile.in ! INCLUDES = -I @top_srcdir@/njd @CHARSET@ noinst_LIBRARIES = libnjd_set_pronunciation.a --- 6,10 ---- MAINTAINERCLEANFILES = Makefile.in ! AM_CPPFLAGS = -I @top_srcdir@/njd @CHARSET@ noinst_LIBRARIES = libnjd_set_pronunciation.a Index: njd_set_pronunciation_rule_euc_jp.h =================================================================== RCS file: /cvsroot/open-jtalk/open_jtalk/src/njd_set_pronunciation/njd_set_pronunciation_rule_euc_jp.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** njd_set_pronunciation_rule_euc_jp.h 11 Dec 2013 06:33:06 -0000 1.8 --- njd_set_pronunciation_rule_euc_jp.h 11 Dec 2014 05:09:07 -0000 1.9 *************** *** 5,9 **** /* ----------------------------------------------------------------- */ /* */ ! /* Copyright (c) 2008-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 5,9 ---- /* ----------------------------------------------------------------- */ /* */ ! /* Copyright (c) 2008-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ *************** *** 143,146 **** --- 143,147 ---- "¥Æ¥å", "¥Æ¥å", "1", "¥Æ¥ã", "¥Æ¥ã", "1", + "¥Æ¥§", "¥Æ¥§", "1", "¥Æ¥£", "¥Æ¥£", "1", "¥Æ", "¥Æ", "1", *************** *** 294,297 **** --- 295,299 ---- "¤Æ¤å", "¥Æ¥å", "1", "¤Æ¤ã", "¥Æ¥ã", "1", + "¤Æ¤§", "¥Æ¥§", "1", "¤Æ¤£", "¥Æ¥£", "1", "¤Æ", "¥Æ", "1", *************** *** 514,517 **** --- 516,521 ---- }; + #define NJD_SET_PRONUNCIATION_FILLER "¥Õ¥£¥é¡¼" + #define NJD_SET_PRONUNCIATION_U "¥¦" #define NJD_SET_PRONUNCIATION_DOUSHI "ư»ì" Index: njd_set_pronunciation.h =================================================================== RCS file: /cvsroot/open-jtalk/open_jtalk/src/njd_set_pronunciation/njd_set_pronunciation.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** njd_set_pronunciation.h 11 Dec 2013 06:33:06 -0000 1.7 --- njd_set_pronunciation.h 11 Dec 2014 05:09:07 -0000 1.8 *************** *** 5,9 **** /* ----------------------------------------------------------------- */ /* */ ! /* Copyright (c) 2008-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 5,9 ---- /* ----------------------------------------------------------------- */ /* */ ! /* Copyright (c) 2008-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ Index: njd_set_pronunciation_rule_shift_jis.h =================================================================== RCS file: /cvsroot/open-jtalk/open_jtalk/src/njd_set_pronunciation/njd_set_pronunciation_rule_shift_jis.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** njd_set_pronunciation_rule_shift_jis.h 11 Dec 2013 06:33:06 -0000 1.8 --- njd_set_pronunciation_rule_shift_jis.h 11 Dec 2014 05:09:07 -0000 1.9 *************** *** 5,9 **** /* ----------------------------------------------------------------- */ /* */ ! /* Copyright (c) 2008-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 5,9 ---- /* ----------------------------------------------------------------- */ /* */ ! /* Copyright (c) 2008-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ *************** *** 143,146 **** --- 143,147 ---- "e ", "e ", "1", "e", "e", "1", + "eF", "eF", "1", "eB", "eB", "1", "e", "e", "1", *************** *** 294,297 **** --- 295,299 ---- "Äã", "e ", "1", "Äá", "e", "1", + "Ä¥", "eF", "1", "Ä¡", "eB", "1", "Ä", "e", "1", *************** *** 514,517 **** --- 516,521 ---- }; + #define NJD_SET_PRONUNCIATION_FILLER "tB[" + #define NJD_SET_PRONUNCIATION_U "E" #define NJD_SET_PRONUNCIATION_DOUSHI "®" Index: njd_set_pronunciation_rule_ascii_for_shift_jis.h =================================================================== RCS file: /cvsroot/open-jtalk/open_jtalk/src/njd_set_pronunciation/njd_set_pronunciation_rule_ascii_for_shift_jis.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** njd_set_pronunciation_rule_ascii_for_shift_jis.h 11 Dec 2013 06:33:06 -0000 1.2 --- njd_set_pronunciation_rule_ascii_for_shift_jis.h 11 Dec 2014 05:09:07 -0000 1.3 *************** *** 5,9 **** /* ----------------------------------------------------------------- */ /* */ ! /* Copyright (c) 2008-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 5,9 ---- /* ----------------------------------------------------------------- */ /* */ ! /* Copyright (c) 2008-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ *************** *** 143,146 **** --- 143,147 ---- "\x83\x65\x83\x85", "\x83\x65\x83\x85", "1", "\x83\x65\x83\x83", "\x83\x65\x83\x83", "1", + "\x83\x65\x83\x46", "\x83\x65\x83\x46", "1", "\x83\x65\x83\x42", "\x83\x65\x83\x42", "1", "\x83\x65", "\x83\x65", "1", *************** *** 294,297 **** --- 295,299 ---- "\x82\xc4\x82\xe3", "\x83\x65\x83\x85", "1", "\x82\xc4\x82\xe1", "\x83\x65\x83\x83", "1", + "\x82\xc4\x82\xa5", "\x83\x65\x83\x46", "1", "\x82\xc4\x82\xa1", "\x83\x65\x83\x42", "1", "\x82\xc4", "\x83\x65", "1", *************** *** 514,517 **** --- 516,521 ---- }; + #define NJD_SET_PRONUNCIATION_FILLER "\x83\x74\x83\x42\x83\x89\x81\x5b" + #define NJD_SET_PRONUNCIATION_U "\x83\x45" #define NJD_SET_PRONUNCIATION_DOUSHI "\x93\xae\x8e\x8c" Index: njd_set_pronunciation.c =================================================================== RCS file: /cvsroot/open-jtalk/open_jtalk/src/njd_set_pronunciation/njd_set_pronunciation.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** njd_set_pronunciation.c 11 Dec 2013 06:33:06 -0000 1.9 --- njd_set_pronunciation.c 11 Dec 2014 05:09:07 -0000 1.10 *************** *** 5,9 **** /* ----------------------------------------------------------------- */ /* */ ! /* Copyright (c) 2008-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 5,9 ---- /* ----------------------------------------------------------------- */ /* */ ! /* Copyright (c) 2008-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ *************** *** 134,137 **** --- 134,141 ---- } } + NJDNode_set_pos(node, NJD_SET_PRONUNCIATION_FILLER); + NJDNode_set_pos_group1(node, NULL); + NJDNode_set_pos_group2(node, NULL); + NJDNode_set_pos_group3(node, NULL); } } Index: njd_set_pronunciation_rule_utf_8.h =================================================================== RCS file: /cvsroot/open-jtalk/open_jtalk/src/njd_set_pronunciation/njd_set_pronunciation_rule_utf_8.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** njd_set_pronunciation_rule_utf_8.h 11 Dec 2013 06:33:06 -0000 1.8 --- njd_set_pronunciation_rule_utf_8.h 11 Dec 2014 05:09:07 -0000 1.9 *************** *** 5,9 **** /* ----------------------------------------------------------------- */ /* */ ! /* Copyright (c) 2008-2013 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ --- 5,9 ---- /* ----------------------------------------------------------------- */ /* */ ! /* Copyright (c) 2008-2014 Nagoya Institute of Technology */ /* Department of Computer Science */ /* */ *************** *** 143,146 **** --- 143,147 ---- "ãã¥", "ãã¥", "1", "ãã£", "ãã£", "1", + "ãã§", "ãã§", "1", "ãã£", "ãã£", "1", "ã", "ã", "1", *************** *** 294,297 **** --- 295,299 ---- "ã¦ã ", "ãã¥", "1", "ã¦ã", "ãã£", "1", + "ã¦ã", "ãã§", "1", "ã¦ã", "ãã£", "1", "ã¦", "ã", "1", *************** *** 514,517 **** --- 516,521 ---- }; + #define NJD_SET_PRONUNCIATION_FILLER "ãã£ã©ã¼" + #define NJD_SET_PRONUNCIATION_U "ã¦" #define NJD_SET_PRONUNCIATION_DOUSHI "åè©" |