Commit b019abfd authored by Pierre Ynard's avatar Pierre Ynard

rtp: fix vorbis header parsing

parent 5e85bff1
...@@ -118,7 +118,7 @@ static ssize_t vorbis_header (void **pextra, const uint8_t *buf, size_t len) ...@@ -118,7 +118,7 @@ static ssize_t vorbis_header (void **pextra, const uint8_t *buf, size_t len)
const void *payloads[3] = { const void *payloads[3] = {
buf + 0, buf + 0,
buf + idlen, buf + idlen,
buf + cmtlen buf + idlen + cmtlen
}; };
void *extra; void *extra;
int extra_size; int extra_size;
......
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