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