Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-09-06 12:27:23 +0400
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-09-06 12:27:23 +0400
commitb8791583e7695b2d9e98a601255313466a1a4113 (patch)
tree2a33fe5e498e06d17db2a26e7134d72a997399ba /libavcodec/vp3.c
parent5f28b5e750b5afa8b585a654943630710ff83451 (diff)
compatible_frame array can be static const, too.
Originally committed as revision 19779 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3.c')
-rw-r--r--libavcodec/vp3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c
index 5e541d0aa6..2cbafa7165 100644
--- a/libavcodec/vp3.c
+++ b/libavcodec/vp3.c
@@ -1225,7 +1225,7 @@ static void reverse_dc_prediction(Vp3DecodeContext *s,
* from other INTRA blocks. There are 2 golden frame coding types;
* blocks encoding in these modes can only predict from other blocks
* that were encoded with these 1 of these 2 modes. */
- unsigned char compatible_frame[8] = {
+ static const unsigned char compatible_frame[8] = {
1, /* MODE_INTER_NO_MV */
0, /* MODE_INTRA */
1, /* MODE_INTER_PLUS_MV */