Merge "Fix multithread encode test"
This commit is contained in:
commit
c0b23ac20d
@ -29,8 +29,6 @@ void Encoder::InitEncoder(VideoSource *video) {
|
|||||||
cfg_.g_timebase = video->timebase();
|
cfg_.g_timebase = video->timebase();
|
||||||
cfg_.rc_twopass_stats_in = stats_->buf();
|
cfg_.rc_twopass_stats_in = stats_->buf();
|
||||||
|
|
||||||
// Default to 1 thread.
|
|
||||||
cfg_.g_threads = 1;
|
|
||||||
res = vpx_codec_enc_init(&encoder_, CodecInterface(), &cfg_,
|
res = vpx_codec_enc_init(&encoder_, CodecInterface(), &cfg_,
|
||||||
init_flags_);
|
init_flags_);
|
||||||
ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError();
|
ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError();
|
||||||
|
@ -183,7 +183,10 @@ class EncoderTest {
|
|||||||
protected:
|
protected:
|
||||||
explicit EncoderTest(const CodecFactory *codec)
|
explicit EncoderTest(const CodecFactory *codec)
|
||||||
: codec_(codec), abort_(false), init_flags_(0), frame_flags_(0),
|
: codec_(codec), abort_(false), init_flags_(0), frame_flags_(0),
|
||||||
last_pts_(0) {}
|
last_pts_(0) {
|
||||||
|
// Default to 1 thread.
|
||||||
|
cfg_.g_threads = 1;
|
||||||
|
}
|
||||||
|
|
||||||
virtual ~EncoderTest() {}
|
virtual ~EncoderTest() {}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user