Skip to content
Snippets Groups Projects
Commit 0c7762a0 authored by Boris Grozev's avatar Boris Grozev
Browse files

Minor update to opus encoder

parent 6a1b0e90
No related branches found
No related tags found
No related merge requests found
......@@ -293,10 +293,10 @@ else if("nb".equals(str))
: b == Opus.BANDWIDTH_SUPERWIDEBAND ? "swb"
: b == Opus.BANDWIDTH_WIDEBAND ? "wb"
: b == Opus.BANDWIDTH_MEDIUMBAND ? "mb"
: "nb") +
", bitrate " + Opus.encoder_get_bitrate(encoder) + ", DTX " +
Opus.encoder_get_dtx(encoder) + ", FEC " + useFecConfig);
// TODO Add Opus.encoder_get_inband_fec().
: "nb")
+ ", bitrate " + Opus.encoder_get_bitrate(encoder)
+ ", DTX " + Opus.encoder_get_dtx(encoder)
+ ", FEC " + Opus.encoder_get_inband_fec(encoder));
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment