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

Unified Diff: talk/media/base/videoframe.h

Issue 1411253002: Remove old VideoFrame::Reset. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/media/base/videoframe.h
diff --git a/talk/media/base/videoframe.h b/talk/media/base/videoframe.h
index 68367200bbc8b6ea6091e8662e8d563fbe7851c8..217732fa1869c9d56492f13f42cec31e47d9b65b 100644
--- a/talk/media/base/videoframe.h
+++ b/talk/media/base/videoframe.h
@@ -62,23 +62,6 @@ class VideoFrame {
webrtc::VideoRotation rotation,
bool apply_rotation) = 0;
- // TODO(guoweis): Remove this once all external implementations are updated.
- virtual bool Reset(uint32_t fourcc,
- int w,
- int h,
- int dw,
- int dh,
- uint8_t* sample,
- size_t sample_size,
- size_t pixel_width,
- size_t pixel_height,
- int64_t time_stamp,
- int rotation) {
- return Reset(fourcc, w, h, dw, dh, sample, sample_size, pixel_width,
- pixel_height, time_stamp,
- static_cast<webrtc::VideoRotation>(rotation), true);
- }
-
// Basic accessors.
// Note this is the width and height without rotation applied.
virtual size_t GetWidth() const = 0;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698