1
mirror of https://github.com/mpv-player/mpv synced 2024-08-04 14:59:58 +02:00

fuckin' 10l

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9369 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
pontscho 2003-02-09 13:17:12 +00:00
parent 8e8a38b5cc
commit 0878af607f

View File

@ -3339,12 +3339,14 @@ if(eof == PT_NEXT_ENTRY || eof == PT_PREV_ENTRY) {
play_tree_step = 1;
} else if (eof == PT_UP_NEXT || eof == PT_UP_PREV) {
eof = eof == PT_UP_NEXT ? 1 : -1;
if(play_tree_iter_up_step(playtree_iter,eof,0) == PLAY_TREE_ITER_ENTRY) {
eof = 1;
} else {
play_tree_iter_free(playtree_iter);
playtree_iter = NULL;
}
if ( playtree_iter ) {
if(play_tree_iter_up_step(playtree_iter,eof,0) == PLAY_TREE_ITER_ENTRY) {
eof = 1;
} else {
play_tree_iter_free(playtree_iter);
playtree_iter = NULL;
}
}
} else { // NEXT PREV SRC
eof = eof == PT_PREV_SRC ? -1 : 1;
}