summaryrefslogtreecommitdiffstats
path: root/video/img_format.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-03-17 18:19:57 +0100
committerwm4 <wm4@nowhere>2014-03-17 18:19:57 +0100
commit5ed24862c01b217b4db0b04d74f29bad9bc80569 (patch)
treeafb9133ac23119c3aceabb1cfb1f2b7e8ee57175 /video/img_format.c
parent6aa2d1f12073c65a30a0b3a8c6d7191165ca0286 (diff)
downloadmpv-5ed24862c01b217b4db0b04d74f29bad9bc80569.tar.bz2
mpv-5ed24862c01b217b4db0b04d74f29bad9bc80569.tar.xz
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.
Diffstat (limited to 'video/img_format.c')
-rw-r--r--video/img_format.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/img_format.c b/video/img_format.c
index e1636e1eb6..8681744e5c 100644
--- a/video/img_format.c
+++ b/video/img_format.c
@@ -126,7 +126,7 @@ struct mp_imgfmt_entry mp_imgfmt_list[] = {
{0}
};
-unsigned int mp_imgfmt_from_name(bstr name, bool allow_hwaccel)
+int mp_imgfmt_from_name(bstr name, bool allow_hwaccel)
{
int img_fmt = 0;
for(struct mp_imgfmt_entry *p = mp_imgfmt_list; p->name; ++p) {
@@ -147,7 +147,7 @@ unsigned int mp_imgfmt_from_name(bstr name, bool allow_hwaccel)
return img_fmt;
}
-const char *mp_imgfmt_to_name(unsigned int fmt)
+const char *mp_imgfmt_to_name(int fmt)
{
struct mp_imgfmt_entry *p = mp_imgfmt_list;
for(; p->name; ++p) {