[FFmpeg-cvslog] r12152 - in trunk/libavformat: rtp_h264.h rtpenc_h264.c

reimar subversion
Tue Feb 19 23:07:48 CET 2008


Author: reimar
Date: Tue Feb 19 23:07:48 2008
New Revision: 12152

Log:
Add some const, fixes warnings:
rtpenc_h264.c:69: warning: assignment discards qualifiers from pointer target type
rtpenc_h264.c:74: warning: assignment discards qualifiers from pointer target type


Modified:
   trunk/libavformat/rtp_h264.h
   trunk/libavformat/rtpenc_h264.c

Modified: trunk/libavformat/rtp_h264.h
==============================================================================
--- trunk/libavformat/rtp_h264.h	(original)
+++ trunk/libavformat/rtp_h264.h	Tue Feb 19 23:07:48 2008
@@ -25,6 +25,6 @@
 #include "rtp_internal.h"
 
 extern RTPDynamicProtocolHandler ff_h264_dynamic_handler;
-void ff_rtp_send_h264(AVFormatContext *s1, uint8_t *buf1, int size);
+void ff_rtp_send_h264(AVFormatContext *s1, const uint8_t *buf1, int size);
 
 #endif /* FFMPEG_RTP_H264_H */

Modified: trunk/libavformat/rtpenc_h264.c
==============================================================================
--- trunk/libavformat/rtpenc_h264.c	(original)
+++ trunk/libavformat/rtpenc_h264.c	Tue Feb 19 23:07:48 2008
@@ -60,15 +60,15 @@ static void nal_send(AVFormatContext *s1
     }
 }
 
-void ff_rtp_send_h264(AVFormatContext *s1, uint8_t *buf1, int size)
+void ff_rtp_send_h264(AVFormatContext *s1, const uint8_t *buf1, int size)
 {
-    uint8_t *r;
+    const uint8_t *r;
     RTPDemuxContext *s = s1->priv_data;
 
     s->timestamp = s->cur_timestamp;
     r = ff_avc_find_startcode(buf1, buf1 + size);
     while (r < buf1 + size) {
-        uint8_t *r1;
+        const uint8_t *r1;
 
         while(!*(r++));
         r1 = ff_avc_find_startcode(r, buf1 + size);




More information about the ffmpeg-cvslog mailing list