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

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: Created 5 years, 3 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
Index: webrtc/frame_callback.h
diff --git a/webrtc/frame_callback.h b/webrtc/frame_callback.h
index 3098ba7b930906854570108b64364b5d26a63ef1..b33a807865d58a2e499477f79d5cc5ef823ca19b 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_(kSkipFrame) {}
EncodedFrame(const uint8_t* data, size_t length, FrameType frame_type)
: data_(data), length_(length), frame_type_(frame_type) {}

Powered by Google App Engine
This is Rietveld 408576698