-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from aliddell/nontrivial-chunking-support
Nontrivial chunking support
- Loading branch information
Showing
10 changed files
with
58 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.1.2](https://github.com/acquire-project/acquire-driver-egrabber/compare/v0.1.1...v0.1.2) - 2023-06-27 | ||
|
||
### Added | ||
|
||
- Nightly releases. | ||
|
||
### Changes | ||
|
||
- Updates call to `storage_properties_init` for the new function signature. | ||
|
||
## 0.1.1 - 2023-05-11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
find_program(GIT git) | ||
set(GIT_TAG "v0") | ||
set(GIT_HASH "") | ||
|
||
if(GIT) | ||
execute_process(COMMAND ${GIT} describe --tags --abbrev=0 | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
OUTPUT_VARIABLE _GIT_TAG | ||
OUTPUT_STRIP_TRAILING_WHITESPACE | ||
ERROR_QUIET | ||
) | ||
execute_process(COMMAND ${GIT} describe --always | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
OUTPUT_VARIABLE GIT_HASH | ||
OUTPUT_STRIP_TRAILING_WHITESPACE | ||
ERROR_QUIET | ||
) | ||
|
||
string(FIND "${_GIT_TAG}" "fatal" find_result) | ||
|
||
if(${find_result} EQUAL -1) | ||
set(GIT_TAG "${_GIT_TAG}") | ||
endif() | ||
endif() | ||
|
||
# Output | ||
add_definitions(-DGIT_TAG=${GIT_TAG}) | ||
add_definitions(-DGIT_HASH=${GIT_HASH}) | ||
set(CPACK_PACKAGE_VERSION ${GIT_TAG}) | ||
message(STATUS "Version ${GIT_TAG} ${GIT_HASH}") |
Submodule acquire-core-libs
updated
18 files
Submodule acquire-driver-common
updated
19 files
+78 −0 | .github/workflows/auto-merge.yml | |
+3 −3 | .github/workflows/nightly-release.yml | |
+62 −0 | .github/workflows/release.yml | |
+46 −47 | .github/workflows/test_pr.yml | |
+17 −0 | CHANGELOG.md | |
+2 −0 | CMakeLists.txt | |
+30 −0 | cmake/git-versioning.cmake | |
+7 −0 | cmake/msvc.cmake | |
+1 −4 | src/CMakeLists.txt | |
+1 −1 | src/acquire-core-libs | |
+7 −10 | src/simcams/3rdParty/pcg-c-basic-0.9/CMakeLists.txt | |
+2 −5 | src/simcams/CMakeLists.txt | |
+2 −8 | src/storage/CMakeLists.txt | |
+35 −17 | src/storage/raw.c | |
+42 −16 | src/storage/side-by-side-tiff.cpp | |
+54 −19 | src/storage/tiff.cpp | |
+33 −13 | src/storage/trash.c | |
+4 −5 | tests/CMakeLists.txt | |
+86 −0 | tests/storage-get-meta.cpp |
Submodule acquire-driver-zarr
updated
43 files
Submodule acquire-video-runtime
updated
18 files
+78 −0 | .github/workflows/auto-merge.yml | |
+46 −47 | .github/workflows/test_pr.yml | |
+6 −43 | CHANGELOG.md | |
+1 −0 | CMakeLists.txt | |
+7 −0 | cmake/msvc.cmake | |
+1 −4 | src/CMakeLists.txt | |
+1 −1 | src/acquire-core-libs | |
+23 −6 | src/acquire.c | |
+1 −1 | src/acquire.h | |
+0 −1 | src/runtime/filter.c | |
+1 −1 | src/runtime/sink.c | |
+0 −1 | src/runtime/source.c | |
+1 −4 | tests/CMakeLists.txt | |
+1 −1 | tests/acquire-driver-common | |
+1 −2 | tests/change-external-metadata.cpp | |
+1 −1 | tests/change-file-name.cpp | |
+1 −1 | tests/one-video-stream.cpp | |
+2 −4 | tests/two-video-streams.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,8 +70,7 @@ main() | |
SIZED("out.zarr"), | ||
0, | ||
0, | ||
{ 0 }, | ||
1ULL << 30); | ||
{ 0 }); | ||
|
||
OK(acquire_configure(runtime, &props)); | ||
|
||
|