BUG=webm:1584
Change-Id: Ie514f6630acfb018a3ac4a05758c8b4119ae28fa
// Note any worker that requires synchronization between other workers will
// hang.
namespace impl {
+namespace {
void Init(VPxWorker *const worker) { memset(worker, 0, sizeof(*worker)); }
int Reset(VPxWorker *const /*worker*/) { return 1; }
void Launch(VPxWorker *const worker) { Execute(worker); }
void End(VPxWorker *const /*worker*/) {}
+} // namespace
} // namespace impl
TEST(VPxWorkerThreadTest, TestSerialInterface) {