| 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); } |
nothing calls this directly
no outgoing calls
no test coverage detected