MCPcopy Create free account
hub / github.com/cisco/openh264 / CheckEncoderInterface

Function CheckEncoderInterface

test/api/c_interface_test.c:12–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10typedef void (*CheckFunc) (int, int, const char*);
11
12void CheckEncoderInterface (ISVCEncoder* p, CheckFunc check) {
13 CHECK (1, p, Initialize);
14 CHECK (2, p, InitializeExt);
15 CHECK (3, p, GetDefaultParams);
16 CHECK (4, p, Uninitialize);
17 CHECK (5, p, EncodeFrame);
18 CHECK (6, p, EncodeParameterSets);
19 CHECK (7, p, ForceIntraFrame);
20 CHECK (8, p, SetOption);
21 CHECK (9, p, GetOption);
22}
23
24void CheckDecoderInterface (ISVCDecoder* p, CheckFunc check) {
25 CHECK (1, p, Initialize);

Callers 1

TESTFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected