summaryrefslogtreecommitdiffstats
path: root/video/mp_image.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/mp_image.c')
-rw-r--r--video/mp_image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/mp_image.c b/video/mp_image.c
index 269db4b2b0..44f5ab903c 100644
--- a/video/mp_image.c
+++ b/video/mp_image.c
@@ -173,7 +173,7 @@ static void mp_image_destructor(void *ptr)
m_refcount_unref(mpi->refcount);
}
-static int mp_chroma_div_up(int size, int shift)
+int mp_chroma_div_up(int size, int shift)
{
return (size + (1 << shift) - 1) >> shift;
}