Skip to content

Commit

Permalink
extract VVC boxes processing into its own file
Browse files Browse the repository at this point in the history
  • Loading branch information
farindk committed Oct 4, 2024
1 parent 3117743 commit 8e94574
Show file tree
Hide file tree
Showing 8 changed files with 667 additions and 605 deletions.
2 changes: 2 additions & 0 deletions libheif/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ set(libheif_sources
codecs/vvc.cc
codecs/vvc_dec.h
codecs/vvc_dec.cc
codecs/vvc_boxes.h
codecs/vvc_boxes.cc
codecs/avc.h
codecs/avc.cc
codecs/avc_boxes.h
Expand Down
2 changes: 1 addition & 1 deletion libheif/box.cc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include "codecs/jpeg2000_boxes.h"
#include "codecs/hevc_boxes.h"
#include "codecs/mask_image.h"
#include "codecs/vvc.h"
#include "codecs/vvc_boxes.h"
#include "codecs/avc_boxes.h"
#include "codecs/avif_boxes.h"
#include "codecs/tild.h"
Expand Down
1 change: 1 addition & 0 deletions libheif/codecs/decoder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
#include "avc_boxes.h"
#include "avif_boxes.h"
#include "hevc_boxes.h"
#include "vvc_boxes.h"
#include "jpeg_boxes.h"
#include "jpeg2000_boxes.h"

Expand Down
Loading

0 comments on commit 8e94574

Please sign in to comment.