Commit ae71b8b5 authored by diego's avatar diego

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17036 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 39359756
......@@ -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