diff options
Diffstat (limited to 'remoting/base/encoder_vp8.h')
-rw-r--r-- | remoting/base/encoder_vp8.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/remoting/base/encoder_vp8.h b/remoting/base/encoder_vp8.h index e283d16..2bf73dc 100644 --- a/remoting/base/encoder_vp8.h +++ b/remoting/base/encoder_vp8.h @@ -51,6 +51,10 @@ class EncoderVp8 : public Encoder { // Buffer for storing the yuv image. scoped_array<uint8> yuv_image_; + // The current frame dimensions. + int width_; + int height_; + DISALLOW_COPY_AND_ASSIGN(EncoderVp8); }; |