| 80 | CodecType mCodecs; // It is a set of CodecEnum |
| 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. |
no outgoing calls
no test coverage detected