make VP8PredLuma16[] array non-const

Change-Id: I0ce7e4e847f9fffefb6544db9636068442a2d264
This commit is contained in:
Pascal Massimino
2015-02-04 17:00:22 +01:00
parent d7eabb8031
commit 774d4cb758
2 changed files with 14 additions and 12 deletions

View File

@ -192,7 +192,7 @@ extern VP8WHT VP8TransformWHT;
// *dst is the destination block, with stride BPS. Boundary samples are
// assumed accessible when needed.
typedef void (*VP8PredFunc)(uint8_t* dst);
extern const VP8PredFunc VP8PredLuma16[/* NUM_B_DC_MODES */];
extern VP8PredFunc VP8PredLuma16[/* NUM_B_DC_MODES */];
extern VP8PredFunc VP8PredChroma8[/* NUM_B_DC_MODES */];
extern VP8PredFunc VP8PredLuma4[/* NUM_BMODES */];