| 18 | } |
| 19 | |
| 20 | inline const TDecoderConstructor* FindDecoder(TStringBuf name) const { |
| 21 | if (auto codec = Codecs_.FindPtr(name)) { |
| 22 | return &codec->Decoder; |
| 23 | } |
| 24 | |
| 25 | return nullptr; |
| 26 | } |
| 27 | |
| 28 | inline const TEncoderConstructor* FindEncoder(TStringBuf name) const { |
| 29 | if (auto codec = Codecs_.FindPtr(name)) { |
no test coverage detected