openh264/test/BaseEncoderTest.h
Martin Storsjö 868f912dc2 Add encoder tests with deblocking and/or denoising
This increases the coverage of assembly routines (and encoder
features in general) tested by the codec unit test.
2014-03-14 22:33:33 +02:00

25 lines
683 B
C++

#ifndef __BASEENCODERTEST_H__
#define __BASEENCODERTEST_H__
#include "codec_api.h"
#include "codec_app_def.h"
#include "utils/InputStream.h"
class BaseEncoderTest {
public:
struct Callback {
virtual void onEncodeFrame(const SFrameBSInfo& frameInfo) = 0;
};
BaseEncoderTest();
void SetUp();
void TearDown();
void EncodeFile(const char* fileName, int width, int height, float frameRate, SliceModeEnum slices, bool denoise, int deblock, Callback* cbk);
void EncodeStream(InputStream* in, int width, int height, float frameRate, SliceModeEnum slices, bool denoise, int deblock, Callback* cbk);
private:
ISVCEncoder* encoder_;
};
#endif //__BASEENCODERTEST_H__