MCPcopy Create free account
hub / github.com/FFMS/ffms2 / ZipFile

Method ZipFile

src/core/zipfile.cpp:29–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27#include "utils.h"
28
29ZipFile::ZipFile(const char *filename, const char *mode)
30 : file(filename, mode, FFMS_ERROR_PARSER, FFMS_ERROR_FILE_READ)
31 , is_file(true)
32 , state(Initial) {
33 buffer.resize(65536);
34 z = {};
35}
36
37ZipFile::ZipFile()
38 : is_file(false)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected