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