View | Details | Raw Unified | Return to bug 49056 | Differences between
and this patch

Collapse All | Expand All

(-)festival/src/modules/OGIresLPC/pmark_analysis.cc (-1 / +2 lines)
Lines 58-64 Link Here
58
    EST_error("OGIresLPC pmark analysis:  infile_list empty - no input files to process");
58
    EST_error("OGIresLPC pmark analysis:  infile_list empty - no input files to process");
59
  }
59
  }
60
60
61
  EST_Pathname f,spfile,lxfile,outfile,basename;
61
  EST_Pathname f,spfile,lxfile,outfile;
62
  EST_String basename;
62
  EST_String sp_path  = wstrdup(g.S("sp_path"));
63
  EST_String sp_path  = wstrdup(g.S("sp_path"));
63
  EST_String lx_path  = wstrdup(g.S("lx_path"));
64
  EST_String lx_path  = wstrdup(g.S("lx_path"));
64
  EST_String out_path = wstrdup(g.S("out_path"));
65
  EST_String out_path = wstrdup(g.S("out_path"));
(-)festival/src/modules/OGIresLPC/resLPC_analysis.cc (-4 / +4 lines)
Lines 62-71 Link Here
62
    bool files_loaded = TRUE;
62
    bool files_loaded = TRUE;
63
    f = EST_Pathname(get_c_string(car(l)));
63
    f = EST_Pathname(get_c_string(car(l)));
64
    basename = f.basename(1);
64
    basename = f.basename(1);
65
    pmfile  = pm_path + basename + pm_ext;
65
    pmfile  = pm_path + ((EST_String)basename) + pm_ext;
66
    spfile  = sp_path + basename + sp_ext;
66
    spfile  = sp_path + ((EST_String)basename) + sp_ext;
67
    lpc_outfile = out_path   + basename + lpc_ext;
67
    lpc_outfile = out_path   + ((EST_String)basename) + lpc_ext;
68
    res_outfile = out_path   + basename + res_ext;
68
    res_outfile = out_path   + ((EST_String)basename) + res_ext;
69
    if (lpc_debug_print) cout << " loading " << pmfile << " --> output to " << res_outfile << "  " << lpc_outfile << endl;
69
    if (lpc_debug_print) cout << " loading " << pmfile << " --> output to " << res_outfile << "  " << lpc_outfile << endl;
70
70
71
    EST_Wave sp;
71
    EST_Wave sp;

Return to bug 49056