[Ffmpeg-cvslog] CVS: ffmpeg/libavformat rtp.c,1.17,1.18

Michael Niedermayer CVS michael
Mon May 30 18:42:38 CEST 2005


Update of /cvsroot/ffmpeg/ffmpeg/libavformat
In directory mail:/var2/tmp/cvs-serv24646

Modified Files:
	rtp.c 
Log Message:
trivial pre-C99 fix for rtp.c by (Wolfram Gloger: wmglo, dent med uni-muenchen de)


Index: rtp.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/rtp.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- rtp.c	26 May 2005 07:47:51 -0000	1.17
+++ rtp.c	30 May 2005 16:42:36 -0000	1.18
@@ -482,6 +482,7 @@
         case CODEC_ID_MPEG4AAC:
             if (rtp_parse_mp4_au(s, buf))
               return -1;
+            {
             rtp_payload_data_t *infos = s->rtp_payload_data;
             if (infos == NULL)
                 return -1;
@@ -494,6 +495,7 @@
             memcpy(pkt->data, buf, infos->au_headers[0].size);
             buf += infos->au_headers[0].size;
             len -= infos->au_headers[0].size;
+            }
             s->read_buf_size = len;
             s->buf_ptr = (char *)buf;
             pkt->stream_index = s->st->index;





More information about the ffmpeg-cvslog mailing list