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. 4 5 #include "media/base/android/demuxer_stream_player_params.h" 6 7 namespace media { 8 DemuxerConfigs()9DemuxerConfigs::DemuxerConfigs() 10 : audio_codec(kUnknownAudioCodec), 11 audio_channels(0), 12 audio_sampling_rate(0), 13 is_audio_encrypted(false), 14 video_codec(kUnknownVideoCodec), 15 is_video_encrypted(false), 16 duration_ms(0) {} 17 ~DemuxerConfigs()18DemuxerConfigs::~DemuxerConfigs() {} 19 AccessUnit()20AccessUnit::AccessUnit() : end_of_stream(false) {} 21 ~AccessUnit()22AccessUnit::~AccessUnit() {} 23 DemuxerData()24DemuxerData::DemuxerData() : type(DemuxerStream::UNKNOWN) {} 25 ~DemuxerData()26DemuxerData::~DemuxerData() {} 27 28 } // namespace media 29