| 233 | } |
| 234 | |
| 235 | void 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 | |
| 244 | void FFMS_Indexer::SetIndexTrackType(int TrackType, bool Index) { |
| 245 | for (int i = 0; i < GetNumberOfTracks(); i++) { |
no outgoing calls
no test coverage detected