// Copyright 2013 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/sample_format.h" #include <ostream> #include "base/notreached.h" namespace media { int SampleFormatToBytesPerChannel(SampleFormat sample_format) { … } int SampleFormatToBitsPerChannel(SampleFormat sample_format) { … } const char* SampleFormatToString(SampleFormat sample_format) { … } bool IsPlanar(SampleFormat sample_format) { … } bool IsInterleaved(SampleFormat sample_format) { … } bool IsBitstream(SampleFormat sample_format) { … } } // namespace media