mirror of https://github.com/mpv-player/mpv
player: use a macro to remove an element from an array
Should be equivalent.
This commit is contained in:
parent
f54220d951
commit
969edb9e0b
|
@ -658,12 +658,7 @@ bool mp_remove_track(struct MPContext *mpctx, struct track *track)
|
||||||
int index = 0;
|
int index = 0;
|
||||||
while (index < mpctx->num_tracks && mpctx->tracks[index] != track)
|
while (index < mpctx->num_tracks && mpctx->tracks[index] != track)
|
||||||
index++;
|
index++;
|
||||||
assert(index < mpctx->num_tracks);
|
MP_TARRAY_REMOVE_AT(mpctx->tracks, mpctx->num_tracks, index);
|
||||||
while (index + 1 < mpctx->num_tracks) {
|
|
||||||
mpctx->tracks[index] = mpctx->tracks[index + 1];
|
|
||||||
index++;
|
|
||||||
}
|
|
||||||
mpctx->num_tracks--;
|
|
||||||
talloc_free(track);
|
talloc_free(track);
|
||||||
|
|
||||||
close_unused_demuxers(mpctx);
|
close_unused_demuxers(mpctx);
|
||||||
|
|
Loading…
Reference in New Issue