MCPcopy Create free account
hub / github.com/Gagravarr/VorbisJava / getIntBE

Method getIntBE

core/src/main/java/org/gagravarr/ogg/IOUtils.java:189–191  ·  view source on GitHub ↗
(int i0, int i1)

Source from the content-addressed store, hash-verified

187 }
188
189 public static int getIntBE(int i0, int i1) {
190 return (i0 << 8) + (i1 << 0);
191 }
192 public static long getIntBE(int i0, int i1, int i2) {
193 return (i0 << 16) + (i1 << 8) + (i2 << 0);
194 }

Callers 7

FlacInfoMethod · 0.95
FlacAudioFrameMethod · 0.95
getAndCheckFirstTwoMethod · 0.95
isFrameHeaderStartMethod · 0.95
getInt2BEMethod · 0.95
getInt3BEMethod · 0.95
getInt4BEMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected