diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-02-01 16:30:51 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-02-01 16:30:51 +0000 |
commit | 5e038b4f084d253c35f266358c6f2049e438094e (patch) | |
tree | 321418092968ee89b4eb009d2fa3c2836958ac1e /libavutil/lzo.h | |
parent | c67102f9028a236f28cb2b75b2b23e72bca44cc3 (diff) | |
download | ffmpeg-5e038b4f084d253c35f266358c6f2049e438094e.tar.gz |
LZO decoder input is const
Originally committed as revision 11797 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/lzo.h')
-rw-r--r-- | libavutil/lzo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/lzo.h b/libavutil/lzo.h index 00427c1469..e7795f7718 100644 --- a/libavutil/lzo.h +++ b/libavutil/lzo.h @@ -30,6 +30,6 @@ #define LZO_INPUT_PADDING 8 #define LZO_OUTPUT_PADDING 12 -int lzo1x_decode(void *out, int *outlen, void *in, int *inlen); +int lzo1x_decode(void *out, int *outlen, const void *in, int *inlen); #endif /* FFMPEG_LZO_H */ |