summaryrefslogtreecommitdiffstats
path: root/libswscale/swscale.h
diff options
context:
space:
mode:
authorstefano <stefano@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-10 23:43:08 +0000
committerstefano <stefano@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-10 23:43:08 +0000
commit87befb386ef85663d862f8a385d67553439ad066 (patch)
tree3bcd2fa3af190e06cf6fbdf0596e92ef69bc1a99 /libswscale/swscale.h
parent11827cc89f6d073d6a4ad9f47a57725cfec703fc (diff)
downloadmpv-87befb386ef85663d862f8a385d67553439ad066.tar.bz2
mpv-87befb386ef85663d862f8a385d67553439ad066.tar.xz
Document sws_cloneVec().
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28527 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 3dc219dfc7..f4bbb872db 100644
--- a/libswscale/swscale.h
+++ b/libswscale/swscale.h
@@ -147,6 +147,11 @@ void sws_convVec(SwsVector *a, SwsVector *b);
void sws_addVec(SwsVector *a, SwsVector *b);
void sws_subVec(SwsVector *a, SwsVector *b);
void sws_shiftVec(SwsVector *a, int shift);
+
+/**
+ * Allocates and returns a clone of the vector \p a, that is a vector
+ * with the same coefficients as \p a.
+ */
SwsVector *sws_cloneVec(SwsVector *a);
void sws_printVec(SwsVector *a);