22 #ifndef __LIBOPENRAW_METADATA_H_
23 #define __LIBOPENRAW_METADATA_H_
26 #include <libopenraw/exif.h>
33 typedef struct _MetaValue *ORMetaValueRef;
34 typedef const struct _MetaValue *ORConstMetaValueRef;
38 META_NS_EXIF = (1 << 16),
39 META_NS_TIFF = (2 << 16)
42 #define META_NS_MASKOUT(x) (x & 0xffff)
43 #define META_INDEX_MASKOUT(x) (x & (0xffff<<16))