51 lines
1.2 KiB
C
51 lines
1.2 KiB
C
#include "codec_api.h"
|
|
#include <stddef.h>
|
|
|
|
// Cast to this function type to ignore other parameters.
|
|
typedef int (*Func)(const void*);
|
|
#define CALL(p, m) (((Func)((*p)->m))(p))
|
|
// Check if the function return an expected number.
|
|
#define CHECK(n, p, m) check(n, CALL(p, m), #m)
|
|
|
|
typedef void(*CheckFunc)(int, int, const char*);
|
|
|
|
void CheckEncoderInterface(ISVCEncoder* p, CheckFunc check) {
|
|
CHECK(1, p, Initialize);
|
|
CHECK(2, p, InitializeExt);
|
|
CHECK(3, p, GetDefaultParams);
|
|
CHECK(4, p, Uninitialize);
|
|
CHECK(5, p, EncodeFrame);
|
|
CHECK(6, p, EncodeParameterSets);
|
|
CHECK(7, p, ForceIntraFrame);
|
|
CHECK(8, p, SetOption);
|
|
CHECK(9, p, GetOption);
|
|
}
|
|
|
|
void CheckDecoderInterface(ISVCDecoder* p, CheckFunc check) {
|
|
CHECK(1, p, Initialize);
|
|
CHECK(2, p, Uninitialize);
|
|
CHECK(3, p, DecodeFrame);
|
|
CHECK(4, p, DecodeFrame2);
|
|
CHECK(5, p, DecodeFrameEx);
|
|
CHECK(6, p, DecodeParser);
|
|
CHECK(7, p, SetOption);
|
|
CHECK(8, p, GetOption);
|
|
}
|
|
|
|
struct bool_test_struct {
|
|
char c;
|
|
bool b;
|
|
};
|
|
|
|
size_t GetBoolSize(void) {
|
|
return sizeof(bool);
|
|
}
|
|
|
|
size_t GetBoolOffset(void) {
|
|
return offsetof(struct bool_test_struct, b);
|
|
}
|
|
|
|
size_t GetBoolStructSize(void) {
|
|
return sizeof(struct bool_test_struct);
|
|
}
|