Browse Source

Merge commit '95d880fa6436f3b557a9c060428a04b9e4d552df'

* commit '95d880fa6436f3b557a9c060428a04b9e4d552df':
  rtpproto: Fix the input RTP data format check

Merged-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer 11 years ago
parent
commit
bd378acad4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/rtpproto.c

+ 1
- 1
libavformat/rtpproto.c View File

@@ -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…
Cancel
Save