// Copyright 2020 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/decoder.h" #include "base/notreached.h" namespace media { Decoder::Decoder() = default; Decoder::~Decoder() = default; bool Decoder::IsPlatformDecoder() const { … } bool Decoder::SupportsDecryption() const { … } std::string GetDecoderName(VideoDecoderType type) { … } std::string GetDecoderName(AudioDecoderType type) { … } std::ostream& operator<<(std::ostream& out, AudioDecoderType type) { … } std::ostream& operator<<(std::ostream& out, VideoDecoderType type) { … } } // namespace media