Commit 72c145ee authored by diego's avatar diego

cosmetics: comment spelling/grammar fixes


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14866 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 173ebd3b
/* /*
* PSX MDEC codec * Sony PlayStation MDEC (Motion DECoder)
* Copyright (c) 2003 Michael Niedermayer * Copyright (c) 2003 Michael Niedermayer
* *
* based upon code from Sebastian Jedruszkiewicz <elf@frogger.rules.pl> * based upon code from Sebastian Jedruszkiewicz <elf@frogger.rules.pl>
...@@ -23,8 +23,8 @@ ...@@ -23,8 +23,8 @@
/** /**
* @file mdec.c * @file mdec.c
* PSX MDEC codec. * Sony PlayStation MDEC (Motion DECoder)
* This is very similar to intra only MPEG1. * This is very similar to intra-only MPEG-1.
*/ */
#include "avcodec.h" #include "avcodec.h"
...@@ -52,7 +52,7 @@ typedef struct MDECContext{ ...@@ -52,7 +52,7 @@ typedef struct MDECContext{
int block_last_index[6]; int block_last_index[6];
} MDECContext; } MDECContext;
//very similar to mpeg1 //very similar to MPEG-1
static inline int mdec_decode_block_intra(MDECContext *a, DCTELEM *block, int n) static inline int mdec_decode_block_intra(MDECContext *a, DCTELEM *block, int n)
{ {
int level, diff, i, j, run; int level, diff, i, j, run;
...@@ -62,7 +62,7 @@ static inline int mdec_decode_block_intra(MDECContext *a, DCTELEM *block, int n) ...@@ -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 uint16_t *quant_matrix= ff_mpeg1_default_intra_matrix;
const int qscale= a->qscale; const int qscale= a->qscale;
/* DC coef */ /* DC coefficient */
if(a->version==2){ if(a->version==2){
block[0]= 2*get_sbits(&a->gb, 10) + 1024; block[0]= 2*get_sbits(&a->gb, 10) + 1024;
}else{ }else{
...@@ -77,7 +77,7 @@ static inline int mdec_decode_block_intra(MDECContext *a, DCTELEM *block, int n) ...@@ -77,7 +77,7 @@ static inline int mdec_decode_block_intra(MDECContext *a, DCTELEM *block, int n)
i = 0; i = 0;
{ {
OPEN_READER(re, &a->gb); OPEN_READER(re, &a->gb);
/* now quantify & encode AC coefs */ /* now quantify & encode AC coefficients */
for(;;) { for(;;) {
UPDATE_CACHE(re, &a->gb); UPDATE_CACHE(re, &a->gb);
GET_RL_VLC(level, run, re, &a->gb, rl->rl_vlc[0], TEX_VLC_BITS, 2, 0); GET_RL_VLC(level, run, re, &a->gb, rl->rl_vlc[0], TEX_VLC_BITS, 2, 0);
......
This diff is collapsed.
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