summaryrefslogtreecommitdiff
path: root/common_video
diff options
context:
space:
mode:
authorpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-05-14 14:27:15 +0000
committerpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-05-14 14:27:15 +0000
commit2cc529f0d55ce2768945b8009c9b3013ca077e0e (patch)
treefa4e5f3d08c20c12a8cb4bb647597e0d715ded53 /common_video
parent0425392858172d13eb65a1143a12c2787cea4b1b (diff)
downloadwebrtc-2cc529f0d55ce2768945b8009c9b3013ca077e0e.tar.gz
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/webrtc@4028 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'common_video')
-rw-r--r--common_video/interface/i420_video_frame.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common_video/interface/i420_video_frame.h b/common_video/interface/i420_video_frame.h
index 09ee9d03..9ca31004 100644
--- a/common_video/interface/i420_video_frame.h
+++ b/common_video/interface/i420_video_frame.h
@@ -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_;}