mirror of
https://github.com/mpv-player/mpv
synced 2025-01-01 20:32:13 +00:00
9ba52ea6ef
Remove the explicit struct mp_csp_details parameters from all related functions, and use mp_image.colorspace/levels instead.
18 lines
413 B
C
18 lines
413 B
C
#ifndef MPLAYER_DRAW_BMP_H
|
|
#define MPLAYER_DRAW_BMP_H
|
|
|
|
#include "sub/sub.h"
|
|
|
|
struct mp_image;
|
|
struct sub_bitmaps;
|
|
struct mp_csp_details;
|
|
struct mp_draw_sub_cache;
|
|
void mp_draw_sub_bitmaps(struct mp_draw_sub_cache **cache, struct mp_image *dst,
|
|
struct sub_bitmaps *sbs);
|
|
|
|
extern const bool mp_draw_sub_formats[SUBBITMAP_COUNT];
|
|
|
|
#endif /* MPLAYER_DRAW_BMP_H */
|
|
|
|
// vim: ts=4 sw=4 et tw=80
|