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

Side by Side Diff: webrtc/media/engine/webrtcvideoengine2.h

Issue 2262443003: Delete VideoFrameFactory, CapturedFrame, and related code. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased. Created 4 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 class VoiceMediaChannel; 53 class VoiceMediaChannel;
54 class WebRtcDecoderObserver; 54 class WebRtcDecoderObserver;
55 class WebRtcEncoderObserver; 55 class WebRtcEncoderObserver;
56 class WebRtcLocalStreamInfo; 56 class WebRtcLocalStreamInfo;
57 class WebRtcRenderAdapter; 57 class WebRtcRenderAdapter;
58 class WebRtcVideoChannelRecvInfo; 58 class WebRtcVideoChannelRecvInfo;
59 class WebRtcVideoChannelSendInfo; 59 class WebRtcVideoChannelSendInfo;
60 class WebRtcVoiceEngine; 60 class WebRtcVoiceEngine;
61 class WebRtcVoiceMediaChannel; 61 class WebRtcVoiceMediaChannel;
62 62
63 struct CapturedFrame;
64 struct Device; 63 struct Device;
65 64
66 // Exposed here for unittests. 65 // Exposed here for unittests.
67 std::vector<VideoCodec> DefaultVideoCodecList(); 66 std::vector<VideoCodec> DefaultVideoCodecList();
68 67
69 class UnsignalledSsrcHandler { 68 class UnsignalledSsrcHandler {
70 public: 69 public:
71 enum Action { 70 enum Action {
72 kDropPacket, 71 kDropPacket,
73 kDeliverPacket, 72 kDeliverPacket,
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after
552 VideoSendParameters send_params_; 551 VideoSendParameters send_params_;
553 VideoOptions default_send_options_; 552 VideoOptions default_send_options_;
554 VideoRecvParameters recv_params_; 553 VideoRecvParameters recv_params_;
555 bool red_disabled_by_remote_side_; 554 bool red_disabled_by_remote_side_;
556 int64_t last_stats_log_ms_; 555 int64_t last_stats_log_ms_;
557 }; 556 };
558 557
559 } // namespace cricket 558 } // namespace cricket
560 559
561 #endif // WEBRTC_MEDIA_ENGINE_WEBRTCVIDEOENGINE2_H_ 560 #endif // WEBRTC_MEDIA_ENGINE_WEBRTCVIDEOENGINE2_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698