summaryrefslogtreecommitdiffstats
path: root/libswscale/swscale.h
diff options
context:
space:
mode:
authorramiro <ramiro@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-08-19 01:33:17 +0000
committerramiro <ramiro@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-08-19 01:33:17 +0000
commit67636ed48b0496139c907b406e156acafb234967 (patch)
treeee95f18c11a1b77b03229d8dbea06f7c5b2e1320 /libswscale/swscale.h
parent0f89c75f31d8fa3f700b22bc65d4c1a8f9095059 (diff)
downloadmpv-67636ed48b0496139c907b406e156acafb234967.tar.bz2
mpv-67636ed48b0496139c907b406e156acafb234967.tar.xz
Introduce and use sws_allocVec().
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29536 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libswscale/swscale.h')
-rw-r--r--libswscale/swscale.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h
index a151095858..43ff7e20f5 100644
--- a/libswscale/swscale.h
+++ b/libswscale/swscale.h
@@ -182,6 +182,11 @@ int sws_getColorspaceDetails(struct SwsContext *c, int **inv_table,
int *brightness, int *contrast, int *saturation);
/**
+ * Allocates and returns an uninitialized vector with length coefficients.
+ */
+SwsVector *sws_allocVec(int length);
+
+/**
* Returns a normalized Gaussian curve used to filter stuff
* quality=3 is high quality, lower is lower quality.
*/