summaryrefslogtreecommitdiff
path: root/libavutil/pixdesc.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-01-31 17:13:57 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-01-31 17:13:57 +0000
commit351aff72a4018cd2c133daf44e6052fe15bf5cb4 (patch)
treea3eb2cd4b231d726b2ac9faa030139806603e6fa /libavutil/pixdesc.h
parentb4b664565573e0c54474c7bfb6adc19cb7b28a55 (diff)
Fix grammar: write to DST THING -> write THING to DST.
Originally committed as revision 21576 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/pixdesc.h')
-rw-r--r--libavutil/pixdesc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavutil/pixdesc.h b/libavutil/pixdesc.h
index 1fa571f405..4b003fd552 100644
--- a/libavutil/pixdesc.h
+++ b/libavutil/pixdesc.h
@@ -95,8 +95,8 @@ typedef struct AVPixFmtDescriptor{
extern const AVPixFmtDescriptor av_pix_fmt_descriptors[];
/**
- * Reads a line from an image, and writes to dst the values of the
- * pixel format component c.
+ * Reads a line from an image, and writes the values of the
+ * pixel format component c to dst.
*
* @param data the array containing the pointers to the planes of the image
* @param linesizes the array containing the linesizes of the image
@@ -106,8 +106,8 @@ extern const AVPixFmtDescriptor av_pix_fmt_descriptors[];
* @param w the width of the line to read, that is the number of
* values to write to dst
* @param read_pal_component if not zero and the format is a paletted
- * format writes to dst the values corresponding to the palette
- * component c in data[1], rather than the palette indexes in
+ * format writes the values corresponding to the palette
+ * component c in data[1] to dst, rather than the palette indexes in
* data[0]. The behavior is undefined if the format is not paletted.
*/
static inline void read_line(uint16_t *dst, const uint8_t *data[4], const int linesize[4],