/*1* a64 video encoder - c64 colors in rgb (Pepto)2* Copyright (c) 2009 Tobias Bindhammer3*4* This file is part of FFmpeg.5*6* FFmpeg is free software; you can redistribute it and/or7* modify it under the terms of the GNU Lesser General Public8* License as published by the Free Software Foundation; either9* version 2.1 of the License, or (at your option) any later version.10*11* FFmpeg is distributed in the hope that it will be useful,12* but WITHOUT ANY WARRANTY; without even the implied warranty of13* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU14* Lesser General Public License for more details.15*16* You should have received a copy of the GNU Lesser General Public17* License along with FFmpeg; if not, write to the Free Software18* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA19*/2021/**22* @file23* a64 video encoder - c64 colors in rgb24*/2526#ifndef AVCODEC_A64COLORS_H27#define AVCODEC_A64COLORS_H2829#include <stdint.h>3031/* c64 palette in RGB */32static const uint8_t a64_palette[16][3] = {33{0x00, 0x00, 0x00},34{0xff, 0xff, 0xff},35{0x68, 0x37, 0x2b},36{0x70, 0xa4, 0xb2},37{0x6f, 0x3d, 0x86},38{0x58, 0x8d, 0x43},39{0x35, 0x28, 0x79},40{0xb8, 0xc7, 0x6f},41{0x6f, 0x4f, 0x25},42{0x43, 0x39, 0x00},43{0x9a, 0x67, 0x59},44{0x44, 0x44, 0x44},45{0x6c, 0x6c, 0x6c},46{0x9a, 0xd2, 0x84},47{0x6c, 0x5e, 0xb5},48{0x95, 0x95, 0x95},49};5051#endif /* AVCODEC_A64COLORS_H */525354