| 980 | } |
| 981 | |
| 982 | IChannelConversion *Cn4Block::CreateChannelConversion() { |
| 983 | if (!cc_block_) { |
| 984 | cc_block_ = std::make_unique<Cc4Block>(); |
| 985 | cc_block_->Init(*this); |
| 986 | } |
| 987 | cc_block_->ChannelDataType(data_type_); |
| 988 | return cc_block_.get(); |
| 989 | } |
| 990 | |
| 991 | IChannel *Cn4Block::CreateChannelComposition() { |
| 992 | auto block = std::make_unique<Cn4Block>(); |
nothing calls this directly
no test coverage detected