diff options
author | Andreas Öman <andreas@lonelycoder.com> | 2008-08-29 10:14:01 +0000 |
---|---|---|
committer | Andreas Öman <andreas@lonelycoder.com> | 2008-08-29 10:14:01 +0000 |
commit | c55ecb9c27a7b46e1a4dc7bfe98b89e345321720 (patch) | |
tree | e89965c69eec144a96739a3a5ede8d033113979f | |
parent | a7bc9d1b71efa2918c31fca34c5c1a0f1ac4433f (diff) | |
download | ffmpeg-c55ecb9c27a7b46e1a4dc7bfe98b89e345321720.tar.gz |
5,1l: samples_chanptr[] should be (const float *)
Originally committed as revision 15022 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/dca.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |