summaryrefslogtreecommitdiffstats
path: root/sub/draw_bmp.h
Commit message (Collapse)AuthorAgeFilesLines
* vo_xv: don't require frame stepping to remove OSD or subswm42012-11-211-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | In order to improve performance, vo_xv didn't create a backup of the video frame before drawing OSD and subtitles during normal playback. It required the frontend to do frame stepping if it wanted to redraw the OSD, but no backup of the video frame was available. (Consider the following use case: enable the OSD permanently with --osd-level=3, then pause during playback and do something that shows an OSD message. The player will advance the video by one frame at the time the new OSD message is first drawn.) This also meant that taking a screenshot during playback with vo_xv would include OSD and subtitles in the resulting image. Fix this by always creating a backup before drawing OSD or subtitles. In order to avoid having to create a full copy of the whole image frame, introduce a complex scheme that tries to backup only the changed regions. It's unclear whether the additional complexity in draw_bmp.c for backing up only the changed areas of the frame is worth it. Possibly a simpler implementation would suffice, such as tracking only Y ranges of changed image data, or even just copying the full frame. vo_xv's get_screenshot() now always creates a copy in order not to modify the currently displayed frame.
* screenshot, draw_bmp: use colorspace passed with mp_imagewm42012-11-011-1/+1
| | | | | Remove the explicit struct mp_csp_details parameters from all related functions, and use mp_image.colorspace/levels instead.
* sub: add cache to mp_draw_sub_bitmaps()wm42012-10-241-2/+7
| | | | This caches scaled RGBA sub-bitmaps.
* sub: add helper to draw sub-bitmaps into an imageRudolf Polzer2012-10-241-0/+12
Merged by wm4 from commits 93978f17b76d..13211ef5fc20. Changed copyright header in draw_bmp.c to "mpv", and removed the one in draw_bmp.h.