Skip to content

Commit

Permalink
uncompressed: (cleanup includes)
Browse files Browse the repository at this point in the history
  • Loading branch information
farindk committed Oct 3, 2024
1 parent cba01e8 commit 901ce17
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 28 deletions.
8 changes: 3 additions & 5 deletions libheif/codecs/uncompressed/decoder_component_interleave.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,12 @@
* along with libheif. If not, see <http://www.gnu.org/licenses/>.
*/

#include <algorithm>
#include <cassert>
#include "decoder_component_interleave.h"
#include "context.h"
#include "error.h"
#include "libheif/heif.h"
#include "unc_dec.h"

#include "decoder_component_interleave.h"
#include <cassert>
#include <vector>


Error ComponentInterleaveDecoder::decode_tile(const HeifContext* context,
Expand Down
2 changes: 2 additions & 0 deletions libheif/codecs/uncompressed/decoder_component_interleave.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
#define UNCI_DECODER_COMPONENT_INTERLEAVE_H

#include "decoder_abstract.h"
#include <memory>
#include <utility>


class ComponentInterleaveDecoder : public AbstractDecoder
Expand Down
10 changes: 4 additions & 6 deletions libheif/codecs/uncompressed/decoder_mixed_interleave.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,13 @@
* along with libheif. If not, see <http://www.gnu.org/licenses/>.
*/

#include <cstring>
#include <algorithm>
#include <cassert>
#include "decoder_mixed_interleave.h"
#include "context.h"
#include "error.h"
#include "libheif/heif.h"
#include "unc_dec.h"

#include "decoder_mixed_interleave.h"
#include <cstring>
#include <cassert>
#include <vector>


Error MixedInterleaveDecoder::decode_tile(const HeifContext* context,
Expand Down
2 changes: 2 additions & 0 deletions libheif/codecs/uncompressed/decoder_mixed_interleave.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
#define UNCI_DECODER_MIXED_INTERLEAVE_H

#include "decoder_abstract.h"
#include <memory>
#include <utility>


class MixedInterleaveDecoder : public AbstractDecoder
Expand Down
7 changes: 3 additions & 4 deletions libheif/codecs/uncompressed/decoder_pixel_interleave.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,11 @@
*/

#include "decoder_pixel_interleave.h"

#include <algorithm>
#include <cassert>
#include "context.h"
#include "error.h"
#include "libheif/heif.h"

#include <cassert>
#include <vector>


Error PixelInterleaveDecoder::decode_tile(const HeifContext* context,
Expand Down
3 changes: 2 additions & 1 deletion libheif/codecs/uncompressed/decoder_pixel_interleave.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@

#include "decoder_abstract.h"
#include "decoder_component_interleave.h"

#include <memory>
#include <utility>


class PixelInterleaveDecoder : public AbstractDecoder
Expand Down
8 changes: 3 additions & 5 deletions libheif/codecs/uncompressed/decoder_row_interleave.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,11 @@
*/

#include "decoder_row_interleave.h"

#include <algorithm>
#include <cassert>
#include "context.h"
#include "error.h"
#include "libheif/heif.h"
#include "unc_dec.h"

#include <cassert>
#include <vector>


Error RowInterleaveDecoder::decode_tile(const HeifContext* context,
Expand Down
2 changes: 2 additions & 0 deletions libheif/codecs/uncompressed/decoder_row_interleave.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
#define UNCI_DECODER_ROW_INTERLEAVE_H

#include "decoder_abstract.h"
#include <memory>
#include <utility>


class RowInterleaveDecoder : public AbstractDecoder
Expand Down
11 changes: 4 additions & 7 deletions libheif/codecs/uncompressed/decoder_tile_component_interleave.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,13 @@
*/


#include <algorithm>
#include <map>
#include <cassert>

#include "decoder_tile_component_interleave.h"
#include "context.h"
#include "error.h"
#include "libheif/heif.h"
#include "unc_dec.h"

#include "decoder_tile_component_interleave.h"
#include <map>
#include <cassert>
#include <vector>


Error TileComponentInterleaveDecoder::decode_tile(const HeifContext* context,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
#define UNCI_DECODER_TILE_COMPONENT_INTERLEAVE_H

#include "decoder_abstract.h"
#include <memory>
#include <utility>


class TileComponentInterleaveDecoder : public AbstractDecoder
Expand Down

0 comments on commit 901ce17

Please sign in to comment.