Commit 75fe5b52 authored by Reimar Döffinger's avatar Reimar Döffinger

Make default_correlation array const since it is never modified.

Originally committed as revision 19924 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 3fdd8276
...@@ -591,7 +591,7 @@ static const float default_decorrelation_matrices[] = { ...@@ -591,7 +591,7 @@ static const float default_decorrelation_matrices[] = {
/** /**
* @brief default decorrelation matrix offsets * @brief default decorrelation matrix offsets
*/ */
static const float *default_decorrelation[] = { static const float * const default_decorrelation[] = {
NULL, NULL,
&default_decorrelation_matrices[0], &default_decorrelation_matrices[0],
&default_decorrelation_matrices[1], &default_decorrelation_matrices[1],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment