Skip to content

Commit 375e05e

Browse files
committed
Stop input and output links sorting by name
1 parent f383adf commit 375e05e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/filter.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1453,8 +1453,8 @@ napi_value filterer(napi_env env, napi_callback_info info) {
14531453
struct filterCarrier : carrier {
14541454
filtContexts *srcCtxs = nullptr;
14551455
filtContexts *sinkCtxs = nullptr;
1456-
std::map<std::string, std::deque<AVFrame *> > srcFrames;
1457-
std::map<std::string, std::vector<AVFrame *> > dstFrames;
1456+
std::unordered_map<std::string, std::deque<AVFrame *> > srcFrames;
1457+
std::unordered_map<std::string, std::vector<AVFrame *> > dstFrames;
14581458
std::vector<napi_ref> frameRefs;
14591459
~filterCarrier() {}
14601460
};

0 commit comments

Comments
 (0)