Commit 6bab4799 authored by Diego Biurrun's avatar Diego Biurrun

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

Originally committed as revision 17036 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d526105f
......@@ -436,7 +436,7 @@ static int swf_write_video(AVFormatContext *s,
}
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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment