summaryrefslogtreecommitdiff
path: root/chromium/media/audio/sounds/wav_audio_handler.h
blob: a2c3e02365002133fdd84bd01451ef0c421d4887 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright 2013 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.

#ifndef MEDIA_AUDIO_SOUNDS_WAV_AUDIO_HANDLER_H_
#define MEDIA_AUDIO_SOUNDS_WAV_AUDIO_HANDLER_H_

#include "base/strings/string_piece.h"
#include "media/base/media_export.h"

namespace media {

class AudioBus;

// This class provides the input from wav file format.  See
// https://ccrma.stanford.edu/courses/422/projects/WaveFormat/
class MEDIA_EXPORT WavAudioHandler {
 public:
  explicit WavAudioHandler(const base::StringPiece& wav_data);
  virtual ~WavAudioHandler();

  // Returns true when cursor points to the end of the track.
  bool AtEnd(size_t cursor) const;

  // Copies the audio data to |bus| starting from the |cursor| and in
  // the case of success stores the number of written bytes in
  // |bytes_written|. |bytes_written| should not be NULL.
  bool CopyTo(AudioBus* bus, size_t cursor, size_t* bytes_written) const;

  int size() const { return data_.size(); }
  uint16 num_channels() const { return num_channels_; }
  uint32 sample_rate() const { return sample_rate_; }
  uint32 byte_rate() const { return byte_rate_; }
  uint16 bits_per_sample() const { return bits_per_sample_; }

 private:
  // Parses a chunk of wav format data. Returns the length of the chunk.
  int ParseSubChunk(const base::StringPiece& data);

  // Parses the 'fmt' section chunk and stores |params_|.
  bool ParseFmtChunk(const base::StringPiece& data);

  // Parses the 'data' section chunk and stores |data_|.
  bool ParseDataChunk(const base::StringPiece& data);

  // Data part of the |wav_data_|.
  base::StringPiece data_;

  uint16 num_channels_;
  uint32 sample_rate_;
  uint32 byte_rate_;
  uint16 bits_per_sample_;
  int bytes_per_sample_;
  int bytes_per_frame_;
};

}  // namespace media

#endif  // MEDIA_AUDIO_SOUNDS_WAV_AUDIO_HANDLER_H_