chromium/media/base/media_types.cc

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "media/base/media_types.h"

#include <tuple>

namespace media {

// static
AudioType AudioType::FromDecoderConfig(const AudioDecoderConfig& config) {}

// static
VideoType VideoType::FromDecoderConfig(const VideoDecoderConfig& config) {}

bool operator==(const AudioType& x, const AudioType& y) {}

bool operator!=(const AudioType& x, const AudioType& y) {}

bool operator<(const AudioType& x, const AudioType& y) {}

bool operator==(const VideoType& x, const VideoType& y) {}

bool operator!=(const VideoType& x, const VideoType& y) {}

}  // namespace media