• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 
7 #include "core/fxcodec/gif/cfx_gif.h"
8 
9 const char* kGifSignature87 = "GIF87a";
10 const char* kGifSignature89 = "GIF89a";
11 
12 static_assert(sizeof(CFX_CFX_GifImageInfo) == 9,
13               "CFX_CFX_GifImageInfo should have a size of 9");
14 static_assert(sizeof(CFX_GifPalette) == 3,
15               "CFX_GifPalette should have a size of 3");
16 static_assert(sizeof(CFX_GifPlainTextExtension) == 13,
17               "CFX_GifPlainTextExtension should have a size of 13");
18 static_assert(sizeof(CFX_GifGraphicControlExtension) == 5,
19               "CFX_GifGraphicControlExtension should have a size of 5");
20 static_assert(sizeof(CFX_GifHeader) == 6,
21               "CFX_GifHeader should have a size of 6");
22 static_assert(sizeof(CFX_GifLocalScreenDescriptor) == 7,
23               "CFX_GifLocalScreenDescriptor should have a size of 7");
24