| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2013 The Chromium 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 #ifndef WEBKIT_FILEAPI_MEDIA_PICASA_PMP_CONSTANTS_H_ |
| 6 #define WEBKIT_FILEAPI_MEDIA_PICASA_PMP_CONSTANTS_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 #include "base/basictypes.h" |
| 11 |
| 12 namespace picasaimport { |
| 13 |
| 14 // PMP file format. |
| 15 // Info derived from: http://sbktech.blogspot.com/2011/12/picasa-pmp-format.html |
| 16 |
| 17 const char* const kPmpExtension = "pmp"; |
| 18 |
| 19 const size_t kPmpHeaderSize = 20; |
| 20 |
| 21 const int kPmpMagic1Offset = 0; |
| 22 const int kPmpMagic2Offset = 6; |
| 23 const int kPmpMagic3Offset = 8; |
| 24 const int kPmpMagic4Offset = 14; |
| 25 |
| 26 const uint32 kPmpMagic1 = 0x3fcccccd; |
| 27 const uint16 kPmpMagic2 = 0x1332; |
| 28 const uint32 kPmpMagic3 = 0x00000002; |
| 29 const uint16 kPmpMagic4 = 0x1332; |
| 30 |
| 31 const int kPmpFieldType1Offset = 4; |
| 32 const int kPmpFieldType2Offset = 12; |
| 33 const int kPmpRowCountOffset = 16; |
| 34 |
| 35 enum PmpFieldType { |
| 36 PMP_TYPE_STRING = 0x00, |
| 37 PMP_TYPE_UINT32 = 0x01, |
| 38 PMP_TYPE_DOUBLE64 = 0x02, |
| 39 PMP_TYPE_UINT8 = 0x03, |
| 40 PMP_TYPE_UINT64 = 0x04, |
| 41 PMP_TYPE_INVALID = 0xff |
| 42 }; |
| 43 |
| 44 } // namespace picasaimport |
| 45 |
| 46 #endif // WEBKIT_FILEAPI_MEDIA_PICASA_PMP_CONSTANTS_H_ |
| OLD | NEW |