From 5ed24862c01b217b4db0b04d74f29bad9bc80569 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 17 Mar 2014 18:19:57 +0100 Subject: 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. --- video/mp_image_pool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'video/mp_image_pool.h') diff --git a/video/mp_image_pool.h b/video/mp_image_pool.h index 0982fd94f8..6ea041c527 100644 --- a/video/mp_image_pool.h +++ b/video/mp_image_pool.h @@ -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); -- cgit v1.2.3