[FFmpeg-cvslog] r17036 - trunk/libavformat/swfenc.c
diego
subversion
Sun Feb 8 04:44:55 CET 2009
Author: diego
Date: Sun Feb 8 04:44:54 2009
New Revision: 17036
Log:
Remove const qualifier from function argument to eliminate the warning
swfenc.c:452: warning: passing argument 2 of #av_fifo_generic_write# discards qualifiers from pointer target type
Modified:
trunk/libavformat/swfenc.c
Modified: trunk/libavformat/swfenc.c
==============================================================================
--- trunk/libavformat/swfenc.c Sun Feb 8 04:29:49 2009 (r17035)
+++ trunk/libavformat/swfenc.c Sun Feb 8 04:44:54 2009 (r17036)
@@ -436,7 +436,7 @@ static int swf_write_video(AVFormatConte
}
static int swf_write_audio(AVFormatContext *s,
- AVCodecContext *enc, const uint8_t *buf, int size)
+ AVCodecContext *enc, uint8_t *buf, int size)
{
SWFContext *swf = s->priv_data;
More information about the ffmpeg-cvslog
mailing list