osd: add subtitle software blending to stats

This commit is contained in:
wm4 2020-05-09 17:54:11 +02:00
parent a1812e2a46
commit b727600d1f
1 changed files with 4 additions and 0 deletions

View File

@ -414,9 +414,13 @@ void osd_draw_on_image_p(struct osd_state *osd, struct mp_osd_res res,
// Need to lock for the dumb osd->draw_cache thing.
pthread_mutex_lock(&osd->lock);
stats_time_start(osd->stats, "draw-bmp");
mp_draw_sub_bitmaps(&osd->draw_cache, dest, list);
talloc_steal(osd, osd->draw_cache);
stats_time_end(osd->stats, "draw-bmp");
pthread_mutex_unlock(&osd->lock);
talloc_free(list);