Merge "Added Reset method to TwopassStatsStore"

This commit is contained in:
Adrian Grange 2012-10-03 13:45:46 -07:00 коммит произвёл Gerrit Code Review
Родитель 7ca59827e3 30f58b526d
Коммит f199bab7ab
2 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -126,6 +126,9 @@ void EncoderTest::RunLoop(VideoSource *video) {
#if CONFIG_VP8_DECODER
vpx_codec_dec_cfg_t dec_cfg = {0};
#endif
stats_.Reset();
for (unsigned int pass = 0; pass < passes_; pass++) {
last_pts_ = 0;

Просмотреть файл

@ -65,6 +65,10 @@ class TwopassStatsStore {
return buf;
}
void Reset() {
buffer_.clear();
}
protected:
std::string buffer_;
};