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

Unified Diff: remoting/protocol/rtp_utils.h

Issue 4925001: Packetizer/Depacketizer for RTP. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 10 years, 1 month 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 | « remoting/protocol/rtp_reader.cc ('k') | remoting/protocol/rtp_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/rtp_utils.h
diff --git a/remoting/protocol/rtp_utils.h b/remoting/protocol/rtp_utils.h
index f1275a91014241deb07d2d76185dff7e2651bd16..9049a22159af62fda90081d7a03aaf2490b451c0 100644
--- a/remoting/protocol/rtp_utils.h
+++ b/remoting/protocol/rtp_utils.h
@@ -24,17 +24,42 @@ struct RtpHeader {
uint32 source_id[15];
};
+// Vp8Descriptor struct used to store values of the VP8 RTP descriptor
+// fields. Meaning of each field is documented in the RTP Payload
+// Format for VP8 spec: http://www.webmproject.org/code/specs/rtp/ .
+struct Vp8Descriptor {
+ enum FragmentationInfo {
+ NOT_FRAGMENTED = 0,
+ FIRST_FRAGMENT = 1,
+ MIDDLE_FRAGMENT = 2,
+ LAST_FRAGMENT = 3,
+ };
+
+ bool non_reference_frame;
+ uint8 fragmentation_info;
+ bool frame_beginning;
+
+ // PictureID is considered to be absent if |picture_id| is set to kuint32max.
+ uint32 picture_id;
+};
+
// Returns size of RTP header for the specified number of sources.
-int GetRtpHeaderSize(int sources);
+int GetRtpHeaderSize(const RtpHeader& header);
// Packs RTP header into the buffer.
-void PackRtpHeader(uint8* buffer, int buffer_size,
- const RtpHeader& header);
+void PackRtpHeader(const RtpHeader& header, uint8* buffer, int buffer_size);
// Unpacks RTP header and stores unpacked values in |header|. If the header
// is not valid returns -1, otherwise returns size of the header.
-int UnpackRtpHeader(const uint8* buffer, int buffer_size,
- RtpHeader* header);
+int UnpackRtpHeader(const uint8* buffer, int buffer_size, RtpHeader* header);
+
+int GetVp8DescriptorSize(const Vp8Descriptor& descriptor);
+
+void PackVp8Descriptor(const Vp8Descriptor& descriptor, uint8* buffer,
+ int buffer_size);
+
+int UnpackVp8Descriptor(const uint8* buffer, int buffer_size,
+ Vp8Descriptor* descriptor);
} // namespace protocol
} // namespace remoting
« no previous file with comments | « remoting/protocol/rtp_reader.cc ('k') | remoting/protocol/rtp_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698