Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2068)

Side by Side Diff: webkit/fileapi/media/picasa/pmp_constants.h

Issue 14247034: Move Media Galleries FileAPI code out of webkit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cr-14352004
Patch Set: Add android ifdef. Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW
« no previous file with comments | « webkit/fileapi/media/picasa/pmp_column_reader_unittest.cc ('k') | webkit/fileapi/media/picasa/pmp_table_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698