MCPcopy Create free account
hub / github.com/RangeNetworks/openbts / CodecSet

Method CodecSet

Control/ControlTransfer.h:83–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

81 bool isSet(CodecType bit) { return mCodecs & bit; }
82 bool isEmpty() { return !mCodecs; }
83 CodecSet(): mCodecs(CodecTypeUndefined) {}
84 CodecSet(CodecType wtype) : mCodecs(wtype) {}
85 // Allow logical OR of two CodecSets together.
86 void orSet(CodecSet other) { mCodecs = (CodecType) (mCodecs | other.mCodecs); }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected