Update talk to 50918584.
Together with Stefan's http://review.webrtc.org/1960004/. R=mallinath@webrtc.org Review URL: https://webrtc-codereview.appspot.com/2048004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4556 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -19,15 +19,13 @@
|
||||
#include "webrtc/typedefs.h"
|
||||
|
||||
namespace webrtc {
|
||||
enum RtpVideoCodecTypes
|
||||
{
|
||||
kRtpGenericVideo = 0,
|
||||
kRtpFecVideo = 10,
|
||||
kRtpVp8Video = 11
|
||||
};
|
||||
|
||||
const uint8_t kRtpMarkerBitMask = 0x80;
|
||||
|
||||
RtpData* NullObjectRtpData();
|
||||
RtpFeedback* NullObjectRtpFeedback();
|
||||
RtpAudioFeedback* NullObjectRtpAudioFeedback();
|
||||
|
||||
namespace ModuleRTPUtility
|
||||
{
|
||||
// January 1970, in NTP seconds.
|
||||
@ -36,22 +34,6 @@ namespace ModuleRTPUtility
|
||||
// Magic NTP fractional unit.
|
||||
const double NTP_FRAC = 4.294967296E+9;
|
||||
|
||||
struct AudioPayload
|
||||
{
|
||||
uint32_t frequency;
|
||||
uint8_t channels;
|
||||
uint32_t rate;
|
||||
};
|
||||
struct VideoPayload
|
||||
{
|
||||
RtpVideoCodecTypes videoCodecType;
|
||||
uint32_t maxRate;
|
||||
};
|
||||
union PayloadUnion
|
||||
{
|
||||
AudioPayload Audio;
|
||||
VideoPayload Video;
|
||||
};
|
||||
struct Payload
|
||||
{
|
||||
char name[RTP_PAYLOAD_NAME_SIZE];
|
||||
|
||||
Reference in New Issue
Block a user