diff rtp_h264.c @ 1673:a782462e2497 libavformat

rename BE/LE_8/16/32 to AV_RL/B_8/16/32
author alex
date Fri, 19 Jan 2007 22:12:59 +0000
parents 92afee454599
children 1f7a6dc01100
line wrap: on
line diff
--- a/rtp_h264.c	Thu Jan 18 23:23:41 2007 +0000
+++ b/rtp_h264.c	Fri Jan 19 22:12:59 2007 +0000
@@ -209,7 +209,7 @@
                 int src_len= len;
 
                 do {
-                    uint16_t nal_size = BE_16(src); // this going to be a problem if unaligned (can it be?)
+                    uint16_t nal_size = AV_RB16(src); // this going to be a problem if unaligned (can it be?)
 
                     // consume the length of the aggregate...
                     src += 2;