~ubuntu-branches/ubuntu/saucy/darktable/saucy

« back to all changes in this revision

Viewing changes to src/rawspeed/RawSpeed/DngDecoder.h

  • Committer: Bazaar Package Importer
  • Author(s): David Bremner
  • Date: 2011-07-12 09:36:46 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110712093646-yp9dbxan44dmw15h
Tags: 0.9-1
* New upstream release.
* Remove all patches now upstream; only patch for
  -Wno-error=unused-but-set-variable remains.
* Bump Standards-Version to 3.9.2 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#pragma once
 
1
#ifndef DNG_DECODER_H
 
2
#define DNG_DECODER_H
 
3
 
2
4
#include "LJpegPlain.h"
3
5
#include "TiffIFD.h"
4
6
#include "DngDecoderSlices.h"
39
41
  TiffIFD *mRootIFD;
40
42
  bool mFixLjpeg;
41
43
  void printMetaData();
 
44
  bool decodeMaskedAreas(TiffIFD* raw);
 
45
  bool decodeBlackLevels(TiffIFD* raw);
 
46
  void setBlack(TiffIFD* raw);
42
47
};
43
48
 
44
49
class DngStrip {
52
57
};
53
58
 
54
59
} // namespace RawSpeed
 
60
 
 
61
#endif