summaryrefslogtreecommitdiff
path: root/libswscale/swscale.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2009-10-30 14:13:25 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2009-10-30 14:13:25 +0000
commita520e9f23554455c460a63cf2680d1db2312fdf7 (patch)
tree049621e4995cdf5bb2910303c7677cee0feb6454 /libswscale/swscale.h
parentc5ec0d9d4f0b4fab8216d711dd37967e878b711d (diff)
Document slice ordering assumption done by sws_scale().
Originally committed as revision 29804 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale.h')
-rw-r--r--libswscale/swscale.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h
index 87e64e2885..abc23fcf40 100644
--- a/libswscale/swscale.h
+++ b/libswscale/swscale.h
@@ -135,7 +135,11 @@ struct SwsContext *sws_getContext(int srcW, int srcH, enum PixelFormat srcFormat
/**
* Scales the image slice in srcSlice and puts the resulting scaled
* slice in the image in dst. A slice is a sequence of consecutive
- * rows in an image. Slices can be bottom to top or top to bottom.
+ * rows in an image.
+ *
+ * Slices have to be provided in sequential order, either in
+ * top-bottom or bottom-top order. If slices are provided in
+ * non-sequential order the behavior of the function is undefined.
*
* @param context the scaling context previously created with
* sws_getContext()