mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 20:50:09 +00:00
Merge commit '95d880fa6436f3b557a9c060428a04b9e4d552df'
* commit '95d880fa6436f3b557a9c060428a04b9e4d552df': rtpproto: Fix the input RTP data format check Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
bd378acad4
@ -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…
Reference in New Issue
Block a user