[FFmpeg-cvslog] r18984 - trunk/libavformat/rtp_aac.c

lucabe subversion
Fri May 29 15:46:46 CEST 2009


Author: lucabe
Date: Fri May 29 15:46:46 2009
New Revision: 18984

Log:
Correctly set the "AU size" field in the payload header for
fragmented AAC frames

Modified:
   trunk/libavformat/rtp_aac.c

Modified: trunk/libavformat/rtp_aac.c
==============================================================================
--- trunk/libavformat/rtp_aac.c	Fri May 29 14:44:44 2009	(r18983)
+++ trunk/libavformat/rtp_aac.c	Fri May 29 15:46:46 2009	(r18984)
@@ -66,14 +66,16 @@ void ff_rtp_send_aac(AVFormatContext *s1
         memcpy(s->buf_ptr, buff, size);
         s->buf_ptr += size;
     } else {
+        int au_size = size;
+
         max_packet_size = s->max_payload_size - 4;
         p = s->buf;
         p[0] = 0;
         p[1] = 16;
         while (size > 0) {
             len = FFMIN(size, max_packet_size);
-            p[2] = len >> 5;
-            p[3] = (size & 0x1F) << 3;
+            p[2] = au_size >> 5;
+            p[3] = (au_size & 0x1F) << 3;
             memcpy(p + 4, buff, len);
             ff_rtp_send_data(s1, p, len + 4, len == size);
             size -= len;



More information about the ffmpeg-cvslog mailing list