diff options
author | Zuxy Meng <zuxy.meng@gmail.com> | 2008-03-18 15:27:15 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2008-03-18 15:27:15 +0000 |
commit | 6544f48f038552973a552401cea5d4e8f1fc9c0a (patch) | |
tree | df001b9633d7c0cd7407cc0566e21917edf73d7b /libavutil/des.h | |
parent | 38c669d853dfa60a73bf59695ff03e7104650623 (diff) | |
download | ffmpeg-6544f48f038552973a552401cea5d4e8f1fc9c0a.tar.gz |
Pure, const and malloc attributes to libavutil.
Patch by Zuxy Meng: zuxy meng gmail com
Original thread:
[FFmpeg-devel] [PATCH] Pure, const and malloc attributes to libavutil
Date: 03/18/2008 6:09 AM
Originally committed as revision 12489 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/des.h')
-rw-r--r-- | libavutil/des.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/des.h b/libavutil/des.h index 70f89937c1..26a40dc0c1 100644 --- a/libavutil/des.h +++ b/libavutil/des.h @@ -34,6 +34,6 @@ * If your input data is in 8-bit blocks treat it as big-endian * (use e.g. AV_RB64 and AV_WB64). */ -uint64_t ff_des_encdec(uint64_t in, uint64_t key, int decrypt); +uint64_t ff_des_encdec(uint64_t in, uint64_t key, int decrypt) av_const; #endif /* FFMPEG_DES_H */ |