Merge commit '95d880fa64'
* commit '95d880fa64':
rtpproto: Fix the input RTP data format check
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
bd378acad4
1 changed files with 1 additions and 1 deletions
|
|
@ -437,7 +437,7 @@ static int rtp_write(URLContext *h, const uint8_t *buf, int size)
|
|||
if (size < 2)
|
||||
return AVERROR(EINVAL);
|
||||
|
||||
if (buf[0] != (RTP_VERSION << 6))
|
||||
if ((buf[0] & 0xc0) != (RTP_VERSION << 6))
|
||||
av_log(h, AV_LOG_WARNING, "Data doesn't look like RTP packets, "
|
||||
"make sure the RTP muxer is used\n");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue