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

Class BaseEncoderTest

test/BaseEncoderTest.h:8–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6#include "utils/InputStream.h"
7
8class BaseEncoderTest {
9 public:
10 struct Callback {
11 virtual void onEncodeFrame (const SFrameBSInfo& frameInfo) = 0;
12 };
13
14 BaseEncoderTest();
15 void SetUp();
16 void TearDown();
17 void EncodeFile (const char* fileName, SEncParamExt* pEncParamExt, Callback* cbk);
18 void EncodeStream (InputStream* in, SEncParamExt* pEncParamExt, Callback* cbk);
19
20 ISVCEncoder* encoder_;
21 private:
22
23};
24
25#endif //__BASEENCODERTEST_H__

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected