summaryrefslogtreecommitdiff
path: root/libavcodec/mdec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-08-20 16:59:26 +0000
committerDiego Biurrun <diego@biurrun.de>2008-08-20 16:59:26 +0000
commit054480a57b9b5cc751f482aa8b22c100ffc340d1 (patch)
treeaa93c9b1da4f41e0da83cf7418ce55b1a4b55d92 /libavcodec/mdec.c
parent38511b9ad3f90a26364061716c927f1db5a61a95 (diff)
cosmetics: comment spelling/grammar fixes
Originally committed as revision 14866 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mdec.c')
-rw-r--r--libavcodec/mdec.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/mdec.c b/libavcodec/mdec.c
index 3dd96ec7e7..8b1384e30d 100644
--- a/libavcodec/mdec.c
+++ b/libavcodec/mdec.c
@@ -1,5 +1,5 @@
/*
- * PSX MDEC codec
+ * Sony PlayStation MDEC (Motion DECoder)
* Copyright (c) 2003 Michael Niedermayer
*
* based upon code from Sebastian Jedruszkiewicz <elf@frogger.rules.pl>
@@ -23,8 +23,8 @@
/**
* @file mdec.c
- * PSX MDEC codec.
- * This is very similar to intra only MPEG1.
+ * Sony PlayStation MDEC (Motion DECoder)
+ * This is very similar to intra-only MPEG-1.
*/
#include "avcodec.h"
@@ -52,7 +52,7 @@ typedef struct MDECContext{
int block_last_index[6];
} MDECContext;
-//very similar to mpeg1
+//very similar to MPEG-1
static inline int mdec_decode_block_intra(MDECContext *a, DCTELEM *block, int n)
{
int level, diff, i, j, run;
@@ -62,7 +62,7 @@ static inline int mdec_decode_block_intra(MDECContext *a, DCTELEM *block, int n)
const uint16_t *quant_matrix= ff_mpeg1_default_intra_matrix;
const int qscale= a->qscale;
- /* DC coef */
+ /* DC coefficient */
if(a->version==2){
block[0]= 2*get_sbits(&a->gb, 10) + 1024;
}else{
@@ -77,7 +77,7 @@ static inline int mdec_decode_block_intra(MDECContext *a, DCTELEM *block, int n)
i = 0;
{
OPEN_READER(re, &a->gb);
- /* now quantify & encode AC coefs */
+ /* now quantify & encode AC coefficients */
for(;;) {
UPDATE_CACHE(re, &a->gb);
GET_RL_VLC(level, run, re, &a->gb, rl->rl_vlc[0], TEX_VLC_BITS, 2, 0);