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

Unified Diff: api/video/video_frame_buffer.h

Issue 2951033003: [EXPERIMENTAL] Generic stereo codec with index header sending single frames
Patch Set: Rebase and add external codec support. Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | api/video/video_frame_buffer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: api/video/video_frame_buffer.h
diff --git a/api/video/video_frame_buffer.h b/api/video/video_frame_buffer.h
index c8d02a153f5f9ae7cafc3959a0b39b85b2cbd5d1..a63be92200ac5fe8562059321c450ea507ee2086 100644
--- a/api/video/video_frame_buffer.h
+++ b/api/video/video_frame_buffer.h
@@ -97,11 +97,15 @@ class PlanarYuvBuffer : public VideoFrameBuffer {
class I420BufferInterface : public PlanarYuvBuffer {
public:
- Type type() const final;
+ Type type() const override;
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 | api/video/video_frame_buffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698