Commit 7b2c4aa1 authored by reimar's avatar reimar

compatible_frame array can be static const, too.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19779 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 08edb2ac
...@@ -1225,7 +1225,7 @@ static void reverse_dc_prediction(Vp3DecodeContext *s, ...@@ -1225,7 +1225,7 @@ static void reverse_dc_prediction(Vp3DecodeContext *s,
* from other INTRA blocks. There are 2 golden frame coding types; * from other INTRA blocks. There are 2 golden frame coding types;
* blocks encoding in these modes can only predict from other blocks * blocks encoding in these modes can only predict from other blocks
* that were encoded with these 1 of these 2 modes. */ * 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 */ 1, /* MODE_INTER_NO_MV */
0, /* MODE_INTRA */ 0, /* MODE_INTRA */
1, /* MODE_INTER_PLUS_MV */ 1, /* MODE_INTER_PLUS_MV */
......
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