diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-04-19 08:47:59 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-04-19 16:18:59 +0200 |
commit | 151cd4f98225c0c5cab8fb29e1dbc0719f7f67e3 (patch) | |
tree | 1ac8d349fc2952023064cf9803d1d26950ea1ba7 /libavcodec/pcm.c | |
parent | d11818eff42681eec9b8106e317a95766506821a (diff) | |
download | ffmpeg-151cd4f98225c0c5cab8fb29e1dbc0719f7f67e3.tar.gz |
pcm: Add const to cast in ENCODE macro.
This fixes a lot of warnings of the sort:
libavcodec/pcm.c:105: warning: cast discards qualifiers from pointer target type
Diffstat (limited to 'libavcodec/pcm.c')
-rw-r--r-- | libavcodec/pcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pcm.c b/libavcodec/pcm.c index e2a733495e..9100646179 100644 --- a/libavcodec/pcm.c +++ b/libavcodec/pcm.c @@ -71,7 +71,7 @@ static av_cold int pcm_encode_close(AVCodecContext *avctx) * @param offset Sample value offset */ #define ENCODE(type, endian, src, dst, n, shift, offset) \ - samples_##type = (type*)src; \ + samples_##type = (const type*) src; \ for(;n>0;n--) { \ register type v = (*samples_##type++ >> shift) + offset; \ bytestream_put_##endian(&dst, v); \ |