Commit 4dbac18e authored by Martin Storsjö's avatar Martin Storsjö

rtpenc: Simplify code by introducing a separate end pointer

Also remove redundant parentheses.
Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent e2484fb6
...@@ -62,17 +62,17 @@ static void nal_send(AVFormatContext *s1, const uint8_t *buf, int size, int last ...@@ -62,17 +62,17 @@ static void nal_send(AVFormatContext *s1, const uint8_t *buf, int size, int last
void ff_rtp_send_h264(AVFormatContext *s1, const uint8_t *buf1, int size) void ff_rtp_send_h264(AVFormatContext *s1, const uint8_t *buf1, int size)
{ {
const uint8_t *r; const uint8_t *r, *end = buf1 + size;
RTPMuxContext *s = s1->priv_data; RTPMuxContext *s = s1->priv_data;
s->timestamp = s->cur_timestamp; s->timestamp = s->cur_timestamp;
r = ff_avc_find_startcode(buf1, buf1 + size); r = ff_avc_find_startcode(buf1, end);
while (r < buf1 + size) { while (r < end) {
const uint8_t *r1; const uint8_t *r1;
while(!*(r++)); while(!*(r++));
r1 = ff_avc_find_startcode(r, buf1 + size); r1 = ff_avc_find_startcode(r, end);
nal_send(s1, r, r1 - r, (r1 == buf1 + size)); nal_send(s1, r, r1 - r, r1 == end);
r = r1; r = r1;
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment