MCPcopy Create free account
hub / github.com/zhuker/lamejs / getEffectiveQuality

Method getEffectiveQuality

src/main/java/lowlevel/LameEncoder.java:556–567  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

554 }
555
556 public int getEffectiveQuality() {
557 if (effQuality >= QUALITY_LOWEST) {
558 return QUALITY_LOWEST;
559 } else if (effQuality >= QUALITY_LOW) {
560 return QUALITY_LOW;
561 } else if (effQuality >= QUALITY_MIDDLE) {
562 return QUALITY_MIDDLE;
563 } else if (effQuality >= QUALITY_HIGH) {
564 return QUALITY_HIGH;
565 }
566 return QUALITY_HIGHEST;
567 }
568
569 public int getEffectiveBitRate() {
570 return effBitRate;

Callers 1

getEffectiveFormatMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected