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

Class OutOfMemory

src/Exceptions.h:354–366  ·  view source on GitHub ↗

Exception when memory could not be allocated

Source from the content-addressed store, hash-verified

352
353 /// Exception when memory could not be allocated
354 class OutOfMemory : public FileExceptionBase
355 {
356 public:
357 /**
358 * @brief Constructor
359 *
360 * @param message A message to accompany the exception
361 * @param file_path (optional) The input file being processed
362 */
363 OutOfMemory(std::string message, std::string file_path="")
364 : FileExceptionBase(message, file_path) { }
365 virtual ~OutOfMemory() noexcept {}
366 };
367
368 /// Exception when a reader is closed, and a frame is requested
369 class ReaderClosed : public FileExceptionBase

Callers 7

auto_detect_formatMethod · 0.85
add_audio_streamMethod · 0.85
add_video_streamMethod · 0.85
allocate_avframeMethod · 0.85
process_video_packetMethod · 0.85
GetAVFrameMethod · 0.85
ProcessVideoPacketMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected