blob: af8df2939c3fc9212adc3928e973c5c9b5669ffc [file] [log] [blame]
// Copyright 2018 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.
#ifndef GARNET_LIB_MEDIA_CODEC_IMPL_INCLUDE_LIB_MEDIA_CODEC_IMPL_CODEC_PORT_H_
#define GARNET_LIB_MEDIA_CODEC_IMPL_INCLUDE_LIB_MEDIA_CODEC_IMPL_CODEC_PORT_H_
#include <stdint.h>
#include <limits>
// Constants for indexing into our own member variable arrays.
enum CodecPort {
kFirstPort = 0,
kInputPort = 0,
kOutputPort = 1,
kPortCount = 2,
kInvalidPort = std::numeric_limits<uint32_t>::max(),
};
#endif // GARNET_LIB_MEDIA_CODEC_IMPL_INCLUDE_LIB_MEDIA_CODEC_IMPL_CODEC_PORT_H_