We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f383adf commit 375e05eCopy full SHA for 375e05e
src/filter.cc
@@ -1453,8 +1453,8 @@ napi_value filterer(napi_env env, napi_callback_info info) {
1453
struct filterCarrier : carrier {
1454
filtContexts *srcCtxs = nullptr;
1455
filtContexts *sinkCtxs = nullptr;
1456
- std::map<std::string, std::deque<AVFrame *> > srcFrames;
1457
- std::map<std::string, std::vector<AVFrame *> > dstFrames;
+ std::unordered_map<std::string, std::deque<AVFrame *> > srcFrames;
+ std::unordered_map<std::string, std::vector<AVFrame *> > dstFrames;
1458
std::vector<napi_ref> frameRefs;
1459
~filterCarrier() {}
1460
};
0 commit comments