Skip to content
Snippets Groups Projects
Commit eb853afb authored by Yao Peter's avatar Yao Peter Committed by Luca Abeni
Browse files

Fix the M bit for multi-packet NALs.

Patch by Yao Peter (peter AT yuvad DOT com)

Originally committed as revision 18858 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 1ac7d1ac
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment