blob: e612a986bb2768d3347aa593647d974247eb5302 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "common/option.h"
#include "common/percent.h"
typedef struct FFMemoryOptions {
FFModuleArgs moduleArgs;
FFPercentageModuleConfig percent;
} FFMemoryOptions;
static_assert(sizeof(FFMemoryOptions) <= FF_OPTION_MAX_SIZE, "FFMemoryOptions size exceeds maximum allowed size");
|