summaryrefslogtreecommitdiff
path: root/libavcodec/qtrle.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-05-26 23:14:25 +0000
committerDiego Biurrun <diego@biurrun.de>2008-05-26 23:14:25 +0000
commitf4433de9ef53b78397c58828e9bf84fb59160aed (patch)
tree0ef2ba182ff661d189bfa98b524ff27ca1d18d16 /libavcodec/qtrle.c
parent30bd40f2f1d89dbab96b1060f581fd95651dd156 (diff)
consistency cosmetics: indices --> indexes
Originally committed as revision 13444 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/qtrle.c')
-rw-r--r--libavcodec/qtrle.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/qtrle.c b/libavcodec/qtrle.c
index 939ceac9a9..4b0f38f740 100644
--- a/libavcodec/qtrle.c
+++ b/libavcodec/qtrle.c
@@ -79,7 +79,7 @@ static void qtrle_decode_4bpp(QtrleContext *s)
int rle_code;
int row_ptr, pixel_ptr;
int row_inc = s->frame.linesize[0];
- unsigned char pi1, pi2, pi3, pi4, pi5, pi6, pi7, pi8; /* 8 palette indices */
+ unsigned char pi1, pi2, pi3, pi4, pi5, pi6, pi7, pi8; /* 8 palette indexes */
unsigned char *rgb = s->frame.data[0];
int pixel_limit = s->frame.linesize[0] * s->avctx->height;
@@ -122,7 +122,7 @@ static void qtrle_decode_4bpp(QtrleContext *s)
/* decode the run length code */
rle_code = -rle_code;
/* get the next 4 bytes from the stream, treat them as palette
- * indices, and output them rle_code times */
+ * indexes, and output them rle_code times */
CHECK_STREAM_PTR(4);
pi1 = ((s->buf[stream_ptr]) >> 4) & 0x0f;
pi2 = (s->buf[stream_ptr++]) & 0x0f;
@@ -170,7 +170,7 @@ static void qtrle_decode_8bpp(QtrleContext *s)
int rle_code;
int row_ptr, pixel_ptr;
int row_inc = s->frame.linesize[0];
- unsigned char pi1, pi2, pi3, pi4; /* 4 palette indices */
+ unsigned char pi1, pi2, pi3, pi4; /* 4 palette indexes */
unsigned char *rgb = s->frame.data[0];
int pixel_limit = s->frame.linesize[0] * s->avctx->height;
@@ -213,7 +213,7 @@ static void qtrle_decode_8bpp(QtrleContext *s)
/* decode the run length code */
rle_code = -rle_code;
/* get the next 4 bytes from the stream, treat them as palette
- * indices, and output them rle_code times */
+ * indexes, and output them rle_code times */
CHECK_STREAM_PTR(4);
pi1 = s->buf[stream_ptr++];
pi2 = s->buf[stream_ptr++];