Browse Source
Merge pull request #9810 from Kelebek1/nvdec_threads
Allow >1 cpu threads on video decoding, disable multi-frame decoding
pull/15/merge
bunnei
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
src/video_core/host1x/codecs/codec.cpp
|
|
|
@ -152,6 +152,8 @@ bool Codec::CreateGpuAvDevice() { |
|
|
|
void Codec::InitializeAvCodecContext() { |
|
|
|
av_codec_ctx = avcodec_alloc_context3(av_codec); |
|
|
|
av_opt_set(av_codec_ctx->priv_data, "tune", "zerolatency", 0); |
|
|
|
av_codec_ctx->thread_count = 0; |
|
|
|
av_codec_ctx->thread_type &= ~FF_THREAD_FRAME; |
|
|
|
} |
|
|
|
|
|
|
|
void Codec::InitializeGpuDecoder() { |
|
|
|
|