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

Unified Diff: webrtc/video/rtp_video_stream_receiver.h

Issue 2926253002: Rename class RtpStreamReceiver --> RtpVideoStreamReceiver. (Closed)
Patch Set: Created 3 years, 6 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/video/rtp_stream_receiver_unittest.cc ('k') | webrtc/video/rtp_video_stream_receiver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/rtp_video_stream_receiver.h
diff --git a/webrtc/video/rtp_stream_receiver.h b/webrtc/video/rtp_video_stream_receiver.h
similarity index 91%
rename from webrtc/video/rtp_stream_receiver.h
rename to webrtc/video/rtp_video_stream_receiver.h
index f6b36faeea8a450311527613ea1c54ecaf2db176..e298803c3fbef00d7e24e4f27b58fa7b4cdd62da 100644
--- a/webrtc/video/rtp_stream_receiver.h
+++ b/webrtc/video/rtp_video_stream_receiver.h
@@ -8,8 +8,8 @@
* be found in the AUTHORS file in the root of the source tree.
*/
-#ifndef WEBRTC_VIDEO_RTP_STREAM_RECEIVER_H_
-#define WEBRTC_VIDEO_RTP_STREAM_RECEIVER_H_
+#ifndef WEBRTC_VIDEO_RTP_VIDEO_STREAM_RECEIVER_H_
+#define WEBRTC_VIDEO_RTP_VIDEO_STREAM_RECEIVER_H_
#include <list>
#include <map>
@@ -55,16 +55,16 @@ namespace vcm {
class VideoReceiver;
} // namespace vcm
-class RtpStreamReceiver : public RtpData,
- public RecoveredPacketReceiver,
- public RtpFeedback,
- public VCMFrameTypeCallback,
- public VCMPacketRequestCallback,
- public video_coding::OnReceivedFrameCallback,
- public video_coding::OnCompleteFrameCallback,
- public CallStatsObserver {
+class RtpVideoStreamReceiver : public RtpData,
+ public RecoveredPacketReceiver,
+ public RtpFeedback,
+ public VCMFrameTypeCallback,
+ public VCMPacketRequestCallback,
+ public video_coding::OnReceivedFrameCallback,
+ public video_coding::OnCompleteFrameCallback,
+ public CallStatsObserver {
public:
- RtpStreamReceiver(
+ RtpVideoStreamReceiver(
Transport* transport,
RtcpRttStats* rtt_stats,
PacketRouter* packet_router,
@@ -75,7 +75,7 @@ class RtpStreamReceiver : public RtpData,
KeyFrameRequestSender* keyframe_request_sender,
video_coding::OnCompleteFrameCallback* complete_frame_callback,
VCMTiming* timing);
- ~RtpStreamReceiver();
+ ~RtpVideoStreamReceiver();
bool AddReceiveCodec(const VideoCodec& video_codec,
const std::map<std::string, std::string>& codec_params);
@@ -203,4 +203,4 @@ class RtpStreamReceiver : public RtpData,
} // namespace webrtc
-#endif // WEBRTC_VIDEO_RTP_STREAM_RECEIVER_H_
+#endif // WEBRTC_VIDEO_RTP_VIDEO_STREAM_RECEIVER_H_
« no previous file with comments | « webrtc/video/rtp_stream_receiver_unittest.cc ('k') | webrtc/video/rtp_video_stream_receiver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698