MCPcopy Create free account
hub / github.com/OpenShot/libopenshot / SetMaxDecodeSize

Method SetMaxDecodeSize

src/ReaderBase.cpp:252–255  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 3

FFmpegReader.cppFile · 0.80
ReaderBase.cppFile · 0.80
QtImageReader.cppFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected