diff rtp.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.c	Thu Jan 18 23:23:41 2007 +0000
+++ b/rtp.c	Fri Jan 19 22:12:59 2007 +0000
@@ -504,7 +504,7 @@
 
     /* decode the first 2 bytes where are stored the AUHeader sections
        length in bits */
-    au_headers_length = BE_16(buf);
+    au_headers_length = AV_RB16(buf);
 
     if (au_headers_length > RTP_MAX_PACKET_LENGTH)
       return -1;