OSDN Git Service

Fix the M bit for multi-packet NALs.
authorYao Peter <peter@yuvad.com>
Sat, 16 May 2009 17:11:47 +0000 (17:11 +0000)
committerLuca Abeni <lucabe72@email.it>
Sat, 16 May 2009 17:11:47 +0000 (17:11 +0000)
Patch by Yao Peter (peter AT yuvad DOT com)

Originally committed as revision 18858 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/rtpenc_h264.c

index 26bd4a9..2ba0771 100644 (file)
@@ -56,7 +56,7 @@ static void nal_send(AVFormatContext *s1, const uint8_t *buf, int size, int last
         }
         s->buf[1] |= 1 << 6;
         memcpy(&s->buf[2], buf, size);
-        ff_rtp_send_data(s1, s->buf, size + 2, 1);
+        ff_rtp_send_data(s1, s->buf, size + 2, last);
     }
 }