mirror of
https://github.com/mpv-player/mpv.git
synced 2025-12-28 05:33:14 +00:00
video: change image format from unsigned int to int in some places
Image formats used to be FourCCs, so unsigned int was better. But now it's annoying and the only difference is that unsigned int is more to type than int.
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
struct mp_image_pool;
|
||||
|
||||
struct mp_image_pool *mp_image_pool_new(int max_count);
|
||||
struct mp_image *mp_image_pool_get(struct mp_image_pool *pool, unsigned int fmt,
|
||||
struct mp_image *mp_image_pool_get(struct mp_image_pool *pool, int fmt,
|
||||
int w, int h);
|
||||
void mp_image_pool_clear(struct mp_image_pool *pool);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user