diff options
Diffstat (limited to 'media/base/video_frame.h')
-rw-r--r-- | media/base/video_frame.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/media/base/video_frame.h b/media/base/video_frame.h index fa8aa96..df0ed23 100644 --- a/media/base/video_frame.h +++ b/media/base/video_frame.h @@ -28,8 +28,6 @@ class MEDIA_EXPORT VideoFrame : public base::RefCountedThreadSafe<VideoFrame> { enum { kMaxPlanes = 4, - kRGBPlane = 0, - kYPlane = 0, kUPlane = 1, kVPlane = 2, @@ -41,7 +39,6 @@ class MEDIA_EXPORT VideoFrame : public base::RefCountedThreadSafe<VideoFrame> { // http://www.fourcc.org/yuv.php enum Format { UNKNOWN = 0, // Unknown format value. - RGB32 = 4, // 32bpp RGB packed with extra byte 8:8:8 YV12 = 6, // 12bpp YVU planar 1x1 Y, 2x2 VU samples YV16 = 7, // 16bpp YVU planar 1x1 Y, 2x1 VU samples EMPTY = 9, // An empty frame. @@ -251,8 +248,6 @@ class MEDIA_EXPORT VideoFrame : public base::RefCountedThreadSafe<VideoFrame> { base::TimeDelta timestamp); virtual ~VideoFrame(); - // Used internally by CreateFrame(). - void AllocateRGB(size_t bytes_per_pixel); void AllocateYUV(); // Used to DCHECK() plane parameters. |