| 91 | } |
| 92 | |
| 93 | CodecType L3BearerCapability::getCodecSet() const |
| 94 | { |
| 95 | unsigned result = 0; |
| 96 | for (unsigned i = 0; i < mNumOctet3a; i++) { |
| 97 | result |= getCodecType(i); |
| 98 | } |
| 99 | // If no Octet3a is given, the default is GSM_FR as you would expect. |
| 100 | return result ? (CodecType) result : GSM_FR; |
| 101 | } |
| 102 | |
| 103 | void L3BearerCapability::text(ostream& os) const |
| 104 | { |
no test coverage detected