Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Unified Diff: webrtc/frame_callback.h

Issue 1371043003: Unify FrameType and VideoFrameType. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/common_types.h ('k') | webrtc/modules/audio_coding/main/acm2/acm_receiver_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/frame_callback.h
diff --git a/webrtc/frame_callback.h b/webrtc/frame_callback.h
index 3098ba7b930906854570108b64364b5d26a63ef1..b7f2210334d9870b0e7e64f7d0d61a7b8d3574e2 100644
--- a/webrtc/frame_callback.h
+++ b/webrtc/frame_callback.h
@@ -21,7 +21,7 @@ class VideoFrame;
struct EncodedFrame {
public:
- EncodedFrame() : data_(NULL), length_(0), frame_type_(kFrameEmpty) {}
+ EncodedFrame() : data_(NULL), length_(0), frame_type_(kEmptyFrame) {}
EncodedFrame(const uint8_t* data, size_t length, FrameType frame_type)
: data_(data), length_(length), frame_type_(frame_type) {}
« no previous file with comments | « webrtc/common_types.h ('k') | webrtc/modules/audio_coding/main/acm2/acm_receiver_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698