Re-subimission of https://codereview.chromium.org/1041213003/
[chromium-blink-merge.git] / media / base / android / demuxer_stream_player_params.cc
blob5c2a11fc28498ec31a40e71158b8da4181d1fd8e
1 // Copyright (c) 2013 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.
5 #include "media/base/android/demuxer_stream_player_params.h"
7 namespace media {
9 DemuxerConfigs::DemuxerConfigs()
10 : audio_codec(kUnknownAudioCodec),
11 audio_channels(0),
12 audio_sampling_rate(0),
13 is_audio_encrypted(false),
14 audio_codec_delay_ns(-1),
15 audio_seek_preroll_ns(-1),
16 video_codec(kUnknownVideoCodec),
17 is_video_encrypted(false) {}
19 DemuxerConfigs::~DemuxerConfigs() {}
21 AccessUnit::AccessUnit() : is_end_of_stream(false), is_key_frame(false) {}
23 AccessUnit::~AccessUnit() {}
25 DemuxerData::DemuxerData() : type(DemuxerStream::UNKNOWN) {}
27 DemuxerData::~DemuxerData() {}
29 } // namespace media