Skip to content

Commit 84f9b8c

Browse files
committed
fix minor bug in online2/online-feature-pipeline.cc (thanks: jungsuk kim)
1 parent 7e2ea6f commit 84f9b8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/online2/online-feature-pipeline.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ OnlineFeaturePipelineConfig::OnlineFeaturePipelineConfig(
4848
} // else use the defaults.
4949

5050
if (config.fbank_config != "") {
51-
ReadConfigFromFile(config.plp_config, &fbank_opts);
51+
ReadConfigFromFile(config.fbank_config, &fbank_opts);
5252
if (feature_type != "fbank")
5353
KALDI_WARN << "--fbank-config option has no effect "
5454
<< "since feature type is set to " << feature_type << ".";
5555
} // else use the defaults.
56-
56+
5757
add_pitch = config.add_pitch;
5858
if (config.pitch_config != "") {
5959
ReadConfigFromFile(config.pitch_config, &pitch_opts);

0 commit comments

Comments
 (0)