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"
9 DemuxerConfigs::DemuxerConfigs()
10 : audio_codec(kUnknownAudioCodec
),
12 audio_sampling_rate(0),
13 is_audio_encrypted(false),
14 video_codec(kUnknownVideoCodec
),
15 is_video_encrypted(false),
18 DemuxerConfigs::~DemuxerConfigs() {}
20 AccessUnit::AccessUnit() : end_of_stream(false) {}
22 AccessUnit::~AccessUnit() {}
24 DemuxerData::DemuxerData() : type(DemuxerStream::UNKNOWN
) {}
26 DemuxerData::~DemuxerData() {}