// Copyright (c) 2012 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 "webkit/media/audio_decoder.h" | |
#include "base/logging.h" | |
namespace webkit_media { | |
bool DecodeAudioFileData(WebKit::WebAudioBus* destination_bus, const char* data, | |
size_t data_size, double sample_rate) { | |
NOTIMPLEMENTED(); | |
return false; | |
} | |
} // namespace webkit_glue |