Commit d484046d authored by stefano's avatar stefano

Fix grammar: write to DST THING -> write THING to DST.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21576 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6ab7012f
...@@ -95,8 +95,8 @@ typedef struct AVPixFmtDescriptor{ ...@@ -95,8 +95,8 @@ typedef struct AVPixFmtDescriptor{
extern const AVPixFmtDescriptor av_pix_fmt_descriptors[]; extern const AVPixFmtDescriptor av_pix_fmt_descriptors[];
/** /**
* Reads a line from an image, and writes to dst the values of the * Reads a line from an image, and writes the values of the
* pixel format component c. * pixel format component c to dst.
* *
* @param data the array containing the pointers to the planes of the image * @param data the array containing the pointers to the planes of the image
* @param linesizes the array containing the linesizes of the image * @param linesizes the array containing the linesizes of the image
...@@ -106,8 +106,8 @@ extern const AVPixFmtDescriptor av_pix_fmt_descriptors[]; ...@@ -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 * @param w the width of the line to read, that is the number of
* values to write to dst * values to write to dst
* @param read_pal_component if not zero and the format is a paletted * @param read_pal_component if not zero and the format is a paletted
* format writes to dst the values corresponding to the palette * format writes the values corresponding to the palette
* component c in data[1], rather than the palette indexes in * 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. * 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], static inline void read_line(uint16_t *dst, const uint8_t *data[4], const int linesize[4],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment