audio_decoder.cc 444 B

12345678910111213141516171819
  1. // Copyright (c) 2012 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "media/base/audio_decoder.h"
  5. #include "media/base/audio_buffer.h"
  6. namespace media {
  7. AudioDecoder::AudioDecoder() = default;
  8. AudioDecoder::~AudioDecoder() = default;
  9. bool AudioDecoder::NeedsBitstreamConversion() const {
  10. return false;
  11. }
  12. } // namespace media