OSDN Git Service

rtpdec: Skip padding bytes at the end of packets
authorMartin Storsjö <martin@martin.st>
Mon, 6 Dec 2010 12:43:38 +0000 (12:43 +0000)
committerMartin Storsjö <martin@martin.st>
Mon, 6 Dec 2010 12:43:38 +0000 (12:43 +0000)
Originally committed as revision 25896 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/rtpdec.c

index c9cf855..638fbdd 100644 (file)
@@ -475,6 +475,12 @@ static int rtp_parse_packet_internal(RTPDemuxContext *s, AVPacket *pkt,
         return -1;
     }
 
+    if (buf[0] & 0x20) {
+        int padding = buf[len - 1];
+        if (len >= 12 + padding)
+            len -= padding;
+    }
+
     s->seq = seq;
     len -= 12;
     buf += 12;