Remove const for plain data types in common_video/

BUG=1644
R=holmer@google.com, stefan@webrtc.org

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk@4028 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
pbos@webrtc.org 2013-05-14 14:27:15 +00:00
parent 29b2219914
commit 6bee05a4aa

View File

@ -93,7 +93,7 @@ class I420VideoFrame {
int height() const {return height_;}
// Set frame timestamp (90kHz).
void set_timestamp(const uint32_t timestamp) {timestamp_ = timestamp;}
void set_timestamp(uint32_t timestamp) {timestamp_ = timestamp;}
// Get frame timestamp (90kHz).
uint32_t timestamp() const {return timestamp_;}