-
Notifications
You must be signed in to change notification settings - Fork 51
[WIP] native nvcuvid backend #798
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
}; | ||
|
||
std::mutex DecoderCache::mutex_; | ||
std::vector<CachedDecoder> DecoderCache::cached_; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's more clear to make mutex_
and cached_
normal member variables of DecoderCache
, and then declare an instance of DecoderCache
that is itself static.
} | ||
}; | ||
static CacheCleanup g_cache_cleanup; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doing the above would, I think, enable you to just make this cleanup logic the destructor for DecoderCache
.
No description provided.