| 1334 | #if FIX_PLT_PRED |
| 1335 | PaletteInfoBuffer tempPalettePredictor; |
| 1336 | |
| 1337 | if( iMinQP != iMaxQP ) |
| 1338 | { |
| 1339 | memcpy( tempPalettePredictor.lastPLTSize, lastPLTSize, sizeof( lastPLTSize ) ); |
| 1340 | memcpy( tempPalettePredictor.lastPLT[0], lastPLT[0], sizeof( tempPalettePredictor.lastPLT[0] ) ); |
| 1341 | memcpy( tempPalettePredictor.lastPLT[1], lastPLT[1], sizeof( tempPalettePredictor.lastPLT[1] ) ); |
| 1342 | memcpy( tempPalettePredictor.lastPLT[2], lastPLT[2], sizeof( tempPalettePredictor.lastPLT[2] ) ); |
| 1343 | } |
| 1344 | #endif |
| 1345 | |
| 1358 | #if FIX_PLT_PRED |
| 1359 | if( iMinQP != iMaxQP && iQP != iMinQP ) |
| 1360 | { |
| 1361 | memcpy( lastPLTSize, tempPalettePredictor.lastPLTSize, sizeof( lastPLTSize ) ); |
| 1362 | memcpy( lastPLT[0], tempPalettePredictor.lastPLT[0], sizeof( tempPalettePredictor.lastPLT[0] ) ); |
| 1363 | memcpy( lastPLT[1], tempPalettePredictor.lastPLT[1], sizeof( tempPalettePredictor.lastPLT[1] ) ); |
| 1364 | memcpy( lastPLT[2], tempPalettePredictor.lastPLT[2], sizeof( tempPalettePredictor.lastPLT[2] ) ); |
| 1365 | } |
| 1366 | #endif |
| 1367 | |