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

Side by Side Diff: content/renderer/media/webmediaplayer_ms.h

Issue 2476693002: WebGL & 16-bit video stream: upload to FLOAT texture. (Closed)
Patch Set: rebase Created 4 years, 1 month 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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 #ifndef CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_MS_H_ 5 #ifndef CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_MS_H_
6 #define CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_MS_H_ 6 #define CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_MS_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 void OnPause() override; 150 void OnPause() override;
151 void OnVolumeMultiplierUpdate(double multiplier) override; 151 void OnVolumeMultiplierUpdate(double multiplier) override;
152 152
153 bool copyVideoTextureToPlatformTexture(gpu::gles2::GLES2Interface* gl, 153 bool copyVideoTextureToPlatformTexture(gpu::gles2::GLES2Interface* gl,
154 unsigned int texture, 154 unsigned int texture,
155 unsigned int internal_format, 155 unsigned int internal_format,
156 unsigned int type, 156 unsigned int type,
157 bool premultiply_alpha, 157 bool premultiply_alpha,
158 bool flip_y) override; 158 bool flip_y) override;
159 159
160 bool texImageImpl(TexImageFunctionID functionID,
161 unsigned target,
162 gpu::gles2::GLES2Interface* gl,
163 int level,
164 int internalformat,
165 unsigned format,
166 unsigned type,
167 int xoffset,
168 int yoffset,
169 int zoffset,
170 bool flip_y,
171 bool premultiply_alpha) override;
172
160 private: 173 private:
161 friend class WebMediaPlayerMSTest; 174 friend class WebMediaPlayerMSTest;
162 175
163 // The callback for MediaStreamVideoRenderer to signal a new frame is 176 // The callback for MediaStreamVideoRenderer to signal a new frame is
164 // available. 177 // available.
165 void OnFrameAvailable(const scoped_refptr<media::VideoFrame>& frame); 178 void OnFrameAvailable(const scoped_refptr<media::VideoFrame>& frame);
166 // Need repaint due to state change. 179 // Need repaint due to state change.
167 void RepaintInternal(); 180 void RepaintInternal();
168 181
169 // The callback for source to report error. 182 // The callback for source to report error.
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 // True if playback should be started upon the next call to OnShown(). Only 249 // True if playback should be started upon the next call to OnShown(). Only
237 // used on Android. 250 // used on Android.
238 bool should_play_upon_shown_; 251 bool should_play_upon_shown_;
239 252
240 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerMS); 253 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerMS);
241 }; 254 };
242 255
243 } // namespace content 256 } // namespace content
244 257
245 #endif // CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_MS_H_ 258 #endif // CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_MS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698