From c55ecb9c27a7b46e1a4dc7bfe98b89e345321720 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Fri, 29 Aug 2008 10:14:01 +0000 Subject: [PATCH] 5,1l: samples_chanptr[] should be (const float *) Originally committed as revision 15022 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dca.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/dca.c b/libavcodec/dca.c index 7eeecc0e7d..8966f6b8b6 100644 --- a/libavcodec/dca.c +++ b/libavcodec/dca.c @@ -164,7 +164,7 @@ typedef struct { int bias; ///< output bias DECLARE_ALIGNED_16(float, samples[1536]); /* 6 * 256 = 1536, might only need 5 */ - float *samples_chanptr[6]; + const float *samples_chanptr[6]; uint8_t dca_buffer[DCA_MAX_FRAME_SIZE]; int dca_buffer_size; ///< how much data is in the dca_buffer