Removing RawImage.

Last cl in the series.

Removing RawImage

BUG=

Review URL: https://webrtc-codereview.appspot.com/709006

git-svn-id: http://webrtc.googlecode.com/svn/trunk@2553 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
mikhal@webrtc.org 2012-08-02 22:18:47 +00:00
parent 8274bf26ca
commit 15264364a1

View File

@ -26,37 +26,6 @@ enum VideoFrameType
kSkipFrame = 4
};
class RawImage
{
public:
RawImage()
: _width(0),
_height(0),
_timeStamp(0),
capture_time_ms_(0),
_buffer(NULL),
_length(0),
_size(0) {}
RawImage(WebRtc_UWord8* buffer, WebRtc_UWord32 length,
WebRtc_UWord32 size)
: _width(0),
_height(0),
_timeStamp(0),
capture_time_ms_(0),
_buffer(buffer),
_length(length),
_size(size) {}
WebRtc_UWord32 _width;
WebRtc_UWord32 _height;
WebRtc_UWord32 _timeStamp;
int64_t capture_time_ms_;
WebRtc_UWord8* _buffer;
WebRtc_UWord32 _length;
WebRtc_UWord32 _size;
};
class EncodedImage
{
public: