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

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

Issue 1613433002: Remove SendStreamFormat and ViewRequests. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 4 years, 11 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 | « talk/media/base/mediachannel.h ('k') | talk/media/base/videoengine_unittest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/media/base/streamparams.h
diff --git a/talk/media/base/streamparams.h b/talk/media/base/streamparams.h
index d082bee95a1be2cb185953c89af7dcfa4cd80fa3..db5f78c1d71c95d7326a0cb19211756d48c36ef7 100644
--- a/talk/media/base/streamparams.h
+++ b/talk/media/base/streamparams.h
@@ -247,31 +247,6 @@ struct MediaStreams {
RTC_DISALLOW_COPY_AND_ASSIGN(MediaStreams);
};
-// A request for a specific format of a specific stream.
-struct StaticVideoView {
- StaticVideoView(const StreamSelector& selector,
- int width, int height, int framerate)
- : selector(selector),
- width(width),
- height(height),
- framerate(framerate),
- preference(0) {
- }
-
- StreamSelector selector;
- int width;
- int height;
- int framerate;
- int preference;
-};
-
-typedef std::vector<StaticVideoView> StaticVideoViews;
-
-// A request for several streams in various formats.
-struct ViewRequest {
- StaticVideoViews static_video_views;
-};
-
template <class Condition>
const StreamParams* GetStream(const StreamParamsVec& streams,
Condition condition) {
« no previous file with comments | « talk/media/base/mediachannel.h ('k') | talk/media/base/videoengine_unittest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698