blob: fc64e5e2c9f668ed4007cf95878e321b184c5345 [file] [log] [blame]
// Copyright 2016 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <lib/async-loop/cpp/loop.h>
#include <lib/sys/cpp/component_context.h>
#include "garnet/bin/media/audio_core/audio_core_impl.h"
int main(int argc, const char** argv) {
async::Loop loop(&kAsyncLoopConfigAttachToThread);
media::audio::AudioCoreImpl impl(sys::ComponentContext::Create());
loop.Run();
return 0;
}