OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/formats/webm/webm_video_client.h" | 5 #include "media/formats/webm/webm_video_client.h" |
6 | 6 |
7 #include "media/base/video_decoder_config.h" | 7 #include "media/base/video_decoder_config.h" |
8 #include "media/formats/webm/webm_constants.h" | 8 #include "media/formats/webm/webm_constants.h" |
9 | 9 |
10 namespace media { | 10 namespace media { |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 } | 89 } |
90 gfx::Size natural_size = gfx::Size(display_width_, display_height_); | 90 gfx::Size natural_size = gfx::Size(display_width_, display_height_); |
91 const uint8* extra_data = NULL; | 91 const uint8* extra_data = NULL; |
92 size_t extra_data_size = 0; | 92 size_t extra_data_size = 0; |
93 if (codec_private.size() > 0) { | 93 if (codec_private.size() > 0) { |
94 extra_data = &codec_private[0]; | 94 extra_data = &codec_private[0]; |
95 extra_data_size = codec_private.size(); | 95 extra_data_size = codec_private.size(); |
96 } | 96 } |
97 | 97 |
98 config->Initialize(video_codec, profile, format, | 98 config->Initialize(video_codec, profile, format, |
99 VideoFrame::COLOR_SPACE_UNSPECIFIED, coded_size, | 99 VideoFrame::COLOR_SPACE_HD_REC709, coded_size, |
100 visible_rect, natural_size, extra_data, extra_data_size, | 100 visible_rect, natural_size, extra_data, extra_data_size, |
101 is_encrypted, true); | 101 is_encrypted, true); |
102 return config->IsValidConfig(); | 102 return config->IsValidConfig(); |
103 } | 103 } |
104 | 104 |
105 bool WebMVideoClient::OnUInt(int id, int64 val) { | 105 bool WebMVideoClient::OnUInt(int id, int64 val) { |
106 int64* dst = NULL; | 106 int64* dst = NULL; |
107 | 107 |
108 switch (id) { | 108 switch (id) { |
109 case kWebMIdPixelWidth: | 109 case kWebMIdPixelWidth: |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 // Accept binary fields we don't care about for now. | 155 // Accept binary fields we don't care about for now. |
156 return true; | 156 return true; |
157 } | 157 } |
158 | 158 |
159 bool WebMVideoClient::OnFloat(int id, double val) { | 159 bool WebMVideoClient::OnFloat(int id, double val) { |
160 // Accept float fields we don't care about for now. | 160 // Accept float fields we don't care about for now. |
161 return true; | 161 return true; |
162 } | 162 } |
163 | 163 |
164 } // namespace media | 164 } // namespace media |
OLD | NEW |