- 论坛徽章:
- 0
|
在看开源的opal的rtp协议实现部分碰到了问题,具体如下:
在取得一个RTP协议的数据报的时候,需要去掉RTP头部,取得真正的数据,代码里计算
RTP头部长度的代码如下: int GetHeaderSize() const {
int size;
size = 12;
if (_frameLen < 12)
return 0;
size += (_frame[0] & 0x0f) * 4;
//判断有没有设置RTP头部扩展
if (!(_frame[0] & 0x10))/*没有扩展*/
return size;
/*头部扩展了,扩展头格式见rfc3550的5.3.1*/
if ((size + 4) < _frameLen)
return (size + 4 + (_frame[size + 2] << 8) + _frame[size + 3]);
return 0;
} |
具体的问题在最后计算扩展头的大小的时候,代码里面算扩展头4个字节后的大小的时候只是把长度直接加上去了,但是我看协议里面,这两个
字节指定的长度是指后面32位数据的个数,应该长度要乘以4才对。
所以想问问是不是我对协议的理解有问题,RFC3550对扩展头部分的描述如下:
If the X bit in the RTP header is one, a variable-length header extension must be appended to
the RTP header, following the CSRC list if present. The header extension contains a 16-bit length
eld that counts the number of 32-bit words in the extension, excluding the four-octet extension
header (therefore zero is a valid length). |
|