remove pause frame interface which will be done in application level

This commit is contained in:
ruil2
2014-07-15 11:05:05 +08:00
parent 4a518655a6
commit 3632a0331c
5 changed files with 6 additions and 43 deletions

View File

@@ -47,22 +47,17 @@ struct SVCEncoderImpl : public ISVCEncoder {
EXPECT_TRUE (gThis == this);
return 6;
}
virtual int EXTAPI PauseFrame (const SSourcePicture* kpSrcPic,
SFrameBSInfo* pBsInfo) {
virtual int EXTAPI ForceIntraFrame (bool bIDR) {
EXPECT_TRUE (gThis == this);
return 7;
}
virtual int EXTAPI ForceIntraFrame (bool bIDR) {
virtual int EXTAPI SetOption (ENCODER_OPTION eOptionId, void* pOption) {
EXPECT_TRUE (gThis == this);
return 8;
}
virtual int EXTAPI SetOption (ENCODER_OPTION eOptionId, void* pOption) {
EXPECT_TRUE (gThis == this);
return 9;
}
virtual int EXTAPI GetOption (ENCODER_OPTION eOptionId, void* pOption) {
EXPECT_TRUE (gThis == this);
return 10;
return 9;
}
};