blob: b10d85c87403d1666627eb173a2d908b5c7caa42 [file] [log] [blame]
Paul McLean073ad282020-01-13 10:32:50 -07001/*
2 * Copyright 2019 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Paul McLean06a59262020-05-13 11:10:56 -060016#include "stream/InputStream.h"
Paul McLean073ad282020-01-13 10:32:50 -070017
18#include "WavChunkHeader.h"
19
Paul McLean0c8b6832020-03-02 10:36:40 -070020namespace parselib {
Paul McLean073ad282020-01-13 10:32:50 -070021
22const RiffID WavChunkHeader::RIFFID_DATA = makeRiffID('d', 'a', 't', 'a');
23
24void WavChunkHeader::read(InputStream *stream) {
25 stream->read(&mChunkId, sizeof(mChunkId));
26 stream->read(&mChunkSize, sizeof(mChunkSize));
27}
28
Paul McLean0c8b6832020-03-02 10:36:40 -070029} // namespace parselib