Skip to content
This repository has been archived by the owner on Jan 21, 2021. It is now read-only.

Commit

Permalink
* Fix: embedded albumart wasn't displayed on initail playback (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
bylee20 committed Mar 30, 2015
1 parent c8741a1 commit 0562de0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/mpv/video/out/vo_opengl_cb.c
Original file line number Diff line number Diff line change
Expand Up @@ -407,9 +407,11 @@ static void flip_page(struct vo *vo)
frame_queue_drop_all(p->ctx);
else // FRAME_DROP_POP mode
frame_queue_shrink(p->ctx, p->frame_queue_size - 1);
}
frame_queue_push(p->ctx, p->ctx->waiting_frame);
p->ctx->waiting_frame = NULL;
}
if (p->ctx->waiting_frame) {
frame_queue_push(p->ctx, p->ctx->waiting_frame);
p->ctx->waiting_frame = NULL;
}
update(p);
pthread_mutex_unlock(&p->ctx->lock);
}
Expand Down

0 comments on commit 0562de0

Please sign in to comment.