Commit 7c1e2e64 authored by Martin Storsjö's avatar Martin Storsjö

rtpenc_xiph: Use AV_WB16 instead of manual bitshifts

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent d16c8d28
...@@ -19,6 +19,8 @@ ...@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include "libavutil/intreadwrite.h"
#include "avformat.h" #include "avformat.h"
#include "rtpenc.h" #include "rtpenc.h"
...@@ -91,8 +93,8 @@ void ff_rtp_send_xiph(AVFormatContext *s1, const uint8_t *buff, int size) ...@@ -91,8 +93,8 @@ void ff_rtp_send_xiph(AVFormatContext *s1, const uint8_t *buff, int size)
if (s->num_frames > 1) if (s->num_frames > 1)
q = s->buf_ptr; // jump ahead if needed q = s->buf_ptr; // jump ahead if needed
*q++ = (size >> 8) & 0xff; AV_WB16(q, size);
*q++ = size & 0xff; q += 2;
memcpy(q, buff, size); memcpy(q, buff, size);
q += size; q += size;
s->buf_ptr = q; s->buf_ptr = q;
...@@ -113,8 +115,8 @@ void ff_rtp_send_xiph(AVFormatContext *s1, const uint8_t *buff, int size) ...@@ -113,8 +115,8 @@ void ff_rtp_send_xiph(AVFormatContext *s1, const uint8_t *buff, int size)
// set packet headers // set packet headers
*q++ = (frag << 6) | (xdt << 4); // num_frames = 0 *q++ = (frag << 6) | (xdt << 4); // num_frames = 0
*q++ = (len >> 8) & 0xff; AV_WB16(q, len);
*q++ = len & 0xff; q += 2;
// set packet body // set packet body
memcpy(q, buff, len); memcpy(q, buff, len);
q += len; q += len;
......
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