diff options
author | qinxialei <xialeiqin@gmail.com> | 2021-04-22 11:20:15 +0800 |
---|---|---|
committer | qinxialei <xialeiqin@gmail.com> | 2021-04-22 11:20:15 +0800 |
commit | 2381d803c76105f44717d75f089ec37f51e5cfe4 (patch) | |
tree | 33f40fb4dfd1039ac262d5f1c1065d298578ddc1 /README.md | |
parent | e8d277081293b6fb2a5d469616baaa7a06f52496 (diff) | |
download | libgav1-2381d803c76105f44717d75f089ec37f51e5cfe4.tar.gz libgav1-2381d803c76105f44717d75f089ec37f51e5cfe4.tar.bz2 libgav1-2381d803c76105f44717d75f089ec37f51e5cfe4.zip |
New upstream version 0.16.3
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 20 |
1 files changed, 16 insertions, 4 deletions
@@ -20,7 +20,18 @@ 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 https://github.com/abseil/abseil-cpp.git third_party/abseil-cpp + ``` + + Note: Abseil is required by the examples and tests. libgav1 will depend on + it if `LIBGAV1_THREADPOOL_USE_STD_MUTEX` is set to `0` (see below). + +4. (Optional) [GoogleTest](https://github.com/google/googletest) + + From within the libgav1 directory: + + ```shell + $ git clone https://github.com/google/googletest.git third_party/googletest ``` ### Compile @@ -58,10 +69,11 @@ Configuration options: * `LIBGAV1_THREADPOOL_USE_STD_MUTEX`: controls use of std::mutex and absl::Mutex in ThreadPool. Defining this to 1 will remove any Abseil dependency from the core library. Automatically defined in - `src/utils/threadpool.h` if unset. + `src/utils/threadpool.h` if unset. Defaults to 1 on Android & iOS, 0 + otherwise. * `LIBGAV1_MAX_THREADS`: sets the number of threads that the library is - allowed to create. Has to be an integer > 0. Otherwise this is ignored. - The default value is 128. + allowed to create. Has to be an integer > 0. Otherwise this is ignored. The + default value is 128. * `LIBGAV1_FRAME_PARALLEL_THRESHOLD_MULTIPLIER`: the threshold multiplier that is used to determine when to use frame parallel decoding. Frame parallel decoding will be used if |threads| > |tile_count| * this multiplier. Has to |