projects
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d526105
)
Remove const qualifier from function argument to eliminate the warning
author
Diego Biurrun
<diego@biurrun.de>
Sun, 8 Feb 2009 03:44:54 +0000
(
03:44
+0000)
committer
Diego Biurrun
<diego@biurrun.de>
Sun, 8 Feb 2009 03:44:54 +0000
(
03:44
+0000)
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
libavformat/swfenc.c
patch
|
blob
|
blame
|
history
diff --git
a/libavformat/swfenc.c
b/libavformat/swfenc.c
index
7aead85
..
b433f6b
100644
(file)
--- a/
libavformat/swfenc.c
+++ b/
libavformat/swfenc.c
@@
-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;