blob: faa6a72cc9cee9da4b96ab3ee53939b2e0e98371 [file] [log] [blame]
// Copyright 2019 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.
library fuchsia.hardware.mediacodec;
using zx;
[ForDeprecatedCBindings]
protocol Device {
/// This method connects the caller with a fuchsia.mediacodec.CodecFactory.
/// Ideally, we wouldn't have the intermediary, but it is necessary with the current
/// DDK APIs.
GetCodecFactory(zx.handle:CHANNEL request);
};