OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "media/base/android/demuxer_stream_player_params.h" | 5 #include "media/base/android/demuxer_stream_player_params.h" |
6 | 6 |
7 namespace media { | 7 namespace media { |
8 | 8 |
9 MediaPlayerHostMsg_DemuxerReady_Params:: | 9 MediaConfigs::MediaConfigs() |
10 MediaPlayerHostMsg_DemuxerReady_Params() | |
11 : audio_codec(kUnknownAudioCodec), | 10 : audio_codec(kUnknownAudioCodec), |
12 audio_channels(0), | 11 audio_channels(0), |
13 audio_sampling_rate(0), | 12 audio_sampling_rate(0), |
14 is_audio_encrypted(false), | 13 is_audio_encrypted(false), |
15 video_codec(kUnknownVideoCodec), | 14 video_codec(kUnknownVideoCodec), |
16 is_video_encrypted(false), | 15 is_video_encrypted(false), |
17 duration_ms(0) {} | 16 duration_ms(0) {} |
18 | 17 |
19 MediaPlayerHostMsg_DemuxerReady_Params:: | 18 MediaConfigs::~MediaConfigs() {} |
20 ~MediaPlayerHostMsg_DemuxerReady_Params() {} | |
21 | 19 |
22 AccessUnit::AccessUnit() : end_of_stream(false) {} | 20 AccessUnit::AccessUnit() : end_of_stream(false) {} |
23 | 21 |
24 AccessUnit::~AccessUnit() {} | 22 AccessUnit::~AccessUnit() {} |
25 | 23 |
26 MediaPlayerHostMsg_ReadFromDemuxerAck_Params:: | 24 MediaData::MediaData() : type(DemuxerStream::UNKNOWN) {} |
27 MediaPlayerHostMsg_ReadFromDemuxerAck_Params() | |
28 : type(DemuxerStream::UNKNOWN) {} | |
29 | 25 |
30 MediaPlayerHostMsg_ReadFromDemuxerAck_Params:: | 26 MediaData::~MediaData() {} |
31 ~MediaPlayerHostMsg_ReadFromDemuxerAck_Params() {} | |
32 | 27 |
33 } // namespace media | 28 } // namespace media |
OLD | NEW |