| 250 | } |
| 251 | |
| 252 | void ReaderBase::SetMaxDecodeSize(int width, int height) { |
| 253 | max_decode_width = std::max(0, width); |
| 254 | max_decode_height = std::max(0, height); |
| 255 | } |
| 256 | |
| 257 | int ReaderBase::MaxDecodeWidth() const { |
| 258 | return max_decode_width; |
no outgoing calls
no test coverage detected