diff options
author | Boyuan Yang <byang@debian.org> | 2023-11-27 22:46:32 -0500 |
---|---|---|
committer | Boyuan Yang <byang@debian.org> | 2023-11-27 22:46:32 -0500 |
commit | 7fee0fd1b17b4f963fa1db74c3a5fcc3ff142e0d (patch) | |
tree | 4ed468528001d8e80e3be09413ae927ca2ac05ce /README.md | |
parent | 0d1e75e423265689dd49c7d6023d8bba70ca4d05 (diff) | |
parent | 19564cb4f77660cdb2f980ca619d4b979b9fe342 (diff) | |
download | libgav1-7fee0fd1b17b4f963fa1db74c3a5fcc3ff142e0d.tar.gz libgav1-7fee0fd1b17b4f963fa1db74c3a5fcc3ff142e0d.tar.bz2 libgav1-7fee0fd1b17b4f963fa1db74c3a5fcc3ff142e0d.zip |
Update upstream source from tag 'upstream/0.19.0'
Update to upstream version '0.19.0'
with Debian dir a4233a4a247b06e8d6e36d07d059f03582d97721
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -20,7 +20,8 @@ compliant AV1 decoder. More information on the AV1 video format can be found at From within the libgav1 directory: ```shell - $ git clone https://github.com/abseil/abseil-cpp.git third_party/abseil-cpp + $ git clone -b 20220623.0 --depth 1 \ + https://github.com/abseil/abseil-cpp.git third_party/abseil-cpp ``` Note: Abseil is required by the examples and tests. libgav1 will depend on @@ -31,7 +32,8 @@ compliant AV1 decoder. More information on the AV1 video format can be found at From within the libgav1 directory: ```shell - $ git clone https://github.com/google/googletest.git third_party/googletest + $ git clone -b release-1.12.1 --depth 1 \ + https://github.com/google/googletest.git third_party/googletest ``` ### Compile @@ -44,8 +46,8 @@ compliant AV1 decoder. More information on the AV1 video format can be found at Configuration options: -* `LIBGAV1_MAX_BITDEPTH`: defines the maximum supported bitdepth (8, 10; - default: 10). +* `LIBGAV1_MAX_BITDEPTH`: defines the maximum supported bitdepth (8, 10, 12; + default: 12). * `LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS`: define to a non-zero value to disable [symbol reduction](#symbol-reduction) in an optimized build to keep all versions of dsp functions available. Automatically defined in |