Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(300)

Side by Side Diff: media/base/android/demuxer_stream_player_params.cc

Issue 23787002: Rename MediaPlayerHostMsg_{DemuxerReady,ReadFromDemuxerAck}_Params to Media{Configs,Data}. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698