MCPcopy Create free account
hub / github.com/FFMS/ffms2 / SetIndexTrack

Method SetIndexTrack

src/core/indexing.cpp:235–242  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

233}
234
235void FFMS_Indexer::SetIndexTrack(int Track, bool Index) {
236 if (Track < 0 || Track >= GetNumberOfTracks())
237 return;
238 if (Index)
239 IndexMask.insert(Track);
240 else
241 IndexMask.erase(Track);
242};
243
244void FFMS_Indexer::SetIndexTrackType(int TrackType, bool Index) {
245 for (int i = 0; i < GetNumberOfTracks(); i++) {

Callers 1

FFMS_TrackIndexSettingsFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected