Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/upload-some-artifacts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ runs:
- name: Upload No-Install Outputs Only
# if not master branch, only upload the extract-and-run artifact
if: github.ref_name != inputs.branch-match
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: JPEGView-GH_${{ github.repository_owner }}-${{ inputs.build-config }}_${{ inputs.platform-arch }}-${{ env.short_sha }}
path: |
Expand All @@ -44,7 +44,7 @@ runs:
# reduce the ambiguous versions of installers in the wild
# by only including the installer for master branch
if: github.ref_name == inputs.branch-match
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
# short_sha comes from the build step
name: JPEGView-GH_${{ github.repository_owner }}-${{ inputs.build-config }}_${{ inputs.platform-arch }}-${{ env.short_sha }}
Expand Down
2 changes: 1 addition & 1 deletion extras/third_party/libavif
Submodule libavif updated 338 files
2 changes: 1 addition & 1 deletion extras/third_party/libheif/dav1d
Submodule dav1d updated from 480355 to 42b2b2
2 changes: 1 addition & 1 deletion extras/third_party/libheif/libde265
Submodule libde265 updated 53 files
+3 −3 .github/workflows/arm.yml
+3 −3 .github/workflows/build.yml
+3 −3 .github/workflows/coverity.yml
+3 −3 .github/workflows/decode.yml
+1 −1 .github/workflows/lint.yml
+3 −3 .github/workflows/mingw.yml
+3 −3 .github/workflows/osx.yml
+3 −0 .gitignore
+15 −5 CMakeLists.txt
+4 −1 Makefile.am
+11 −3 README.md
+10 −7 configure.ac
+12 −12 dec265/CMakeLists.txt
+6 −6 dec265/Makefile.am
+34 −14 dec265/dec265.cc
+90 −69 dec265/sdl.cc
+5 −2 dec265/sdl.hh
+2 −2 extra/libde265/de265-version.h
+2 −2 libde265.pc.in
+50 −2 libde265/CMakeLists.txt
+30 −6 libde265/cabac.cc
+5 −5 libde265/cabac.h
+3 −3 libde265/configparam.cc
+2 −2 libde265/contextmodel.cc
+1 −1 libde265/de265.h
+17 −13 libde265/decctx.cc
+5 −5 libde265/decctx.h
+11 −11 libde265/dpb.cc
+1 −1 libde265/encoder/algo/cb-split.cc
+3 −3 libde265/encoder/algo/coding-options.cc
+1 −1 libde265/encoder/algo/tb-intrapredmode.cc
+1 −1 libde265/encoder/encoder-types.cc
+6 −6 libde265/encoder/encpicbuf.cc
+22 −0 libde265/image-io.cc
+6 −6 libde265/image-io.h
+71 −7 libde265/image.cc
+10 −2 libde265/image.h
+34 −6 libde265/motion.cc
+3 −2 libde265/nal-parser.cc
+3 −3 libde265/refpic.cc
+13 −24 libde265/sao.cc
+15 −1 libde265/slice.cc
+1 −1 libde265/sps.cc
+6 −1 libde265/transform.cc
+2 −2 libde265/vui.cc
+2 −2 libde265/x86/sse-dct.cc
+18 −18 libde265/x86/sse-motion.cc
+71 −0 scripts/build-android-libs.sh
+1 −0 scripts/check_licenses.sh
+6 −3 scripts/ci-before-install-linux.sh
+8 −0 scripts/ci-run.sh
+1 −1 sherlock265/README
+ testdata/girlshy.h265
2 changes: 1 addition & 1 deletion extras/third_party/libheif/libheif
Submodule libheif updated 509 files
Binary file modified src/JPEGView/libavif/bin/avif.dll
Binary file not shown.
Binary file modified src/JPEGView/libavif/bin/dav1d.dll
Binary file not shown.
Binary file modified src/JPEGView/libavif/bin64/avif.dll
Binary file not shown.
Binary file modified src/JPEGView/libavif/bin64/dav1d.dll
Binary file not shown.
683 changes: 577 additions & 106 deletions src/JPEGView/libavif/include/avif/avif.h

Large diffs are not rendered by default.

481 changes: 367 additions & 114 deletions src/JPEGView/libavif/include/avif/internal.h

Large diffs are not rendered by default.

Binary file modified src/JPEGView/libavif/lib/avif.lib
Binary file not shown.
Binary file modified src/JPEGView/libavif/lib64/avif.lib
Binary file not shown.
Binary file modified src/JPEGView/libheif/bin/heif.dll
Binary file not shown.
Binary file modified src/JPEGView/libheif/bin/libde265.dll
Binary file not shown.
Binary file modified src/JPEGView/libheif/bin64/heif.dll
Binary file not shown.
Binary file modified src/JPEGView/libheif/bin64/libde265.dll
Binary file not shown.
81 changes: 0 additions & 81 deletions src/JPEGView/libheif/include/libheif/api_structs.h

This file was deleted.

40 changes: 0 additions & 40 deletions src/JPEGView/libheif/include/libheif/avif.h

This file was deleted.

Loading