summaryrefslogtreecommitdiff
path: root/libavcodec/pcm.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-04-19 08:47:59 +0200
committerDiego Biurrun <diego@biurrun.de>2011-04-19 16:18:59 +0200
commit151cd4f98225c0c5cab8fb29e1dbc0719f7f67e3 (patch)
tree1ac8d349fc2952023064cf9803d1d26950ea1ba7 /libavcodec/pcm.c
parentd11818eff42681eec9b8106e317a95766506821a (diff)
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.c2
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); \