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

Unified Diff: webrtc/api/video/video_frame_buffer.h

Issue 2990463002: [EXPERIMENTAL] Generic stereo codec with index header sending merged frames
Patch Set: Created 3 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/api/video/video_frame_buffer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/video/video_frame_buffer.h
diff --git a/webrtc/api/video/video_frame_buffer.h b/webrtc/api/video/video_frame_buffer.h
index a2ace6e06a53f1e37eec0dc01b82c60ec3ba05bf..2490a5a61698f0d3e9e70b932da3b99410ad83d7 100644
--- a/webrtc/api/video/video_frame_buffer.h
+++ b/webrtc/api/video/video_frame_buffer.h
@@ -97,11 +97,15 @@ class PlanarYuvBuffer : public VideoFrameBuffer {
class I420BufferInterface : public PlanarYuvBuffer {
public:
- Type type() const final;
+ virtual Type type() const;
int ChromaWidth() const final;
int ChromaHeight() const final;
+ bool HasAlpha() const;
+ virtual const uint8_t* DataA() const;
+ virtual int StrideA() const;
+
rtc::scoped_refptr<I420BufferInterface> ToI420() final;
protected:
« no previous file with comments | « no previous file | webrtc/api/video/video_frame_buffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698