Move kRtpCsrcSize from common_types.h to rtp_headers.h

Bug: webrtc:5876
Change-Id: I023aa9219cff56d7afa0c41d072d0877df5c2cee
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/135568
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Commit-Queue: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#27906}
This commit is contained in:
Niels Möller
2019-05-08 14:24:15 +02:00
committed by Commit Bot
parent 199295882d
commit 418f580a5a
2 changed files with 2 additions and 3 deletions

View File

@ -88,6 +88,8 @@ struct RTPHeaderExtension {
absl::optional<ColorSpace> color_space; absl::optional<ColorSpace> color_space;
}; };
enum { kRtpCsrcSize = 15 }; // RFC 3550 page 13
struct RTPHeader { struct RTPHeader {
RTPHeader(); RTPHeader();
RTPHeader(const RTPHeader& other); RTPHeader(const RTPHeader& other);

View File

@ -38,9 +38,6 @@ class OverheadObserver {
virtual void OnOverheadChanged(size_t overhead_bytes_per_packet) = 0; virtual void OnOverheadChanged(size_t overhead_bytes_per_packet) = 0;
}; };
// RTP
enum { kRtpCsrcSize = 15 }; // RFC 3550 page 13
// ================================================================== // ==================================================================
// Video specific types // Video specific types
// ================================================================== // ==================================================================