blob: 392e7f09c60aba201ec4b6ea4239b763d5657df5 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromecast/public/media/media_capabilities_shlib.h"
namespace chromecast {
namespace media {
bool MediaCapabilitiesShlib::IsSupportedAudioConfig(const AudioConfig& config) {
switch (config.codec) {
case kCodecPCM:
case kCodecPCM_S16BE:
case kCodecAAC:
case kCodecMP3:
case kCodecVorbis:
return true;
default:
break;
}
return false;
}
} // namespace media
} // namespace chromecast