Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-11-10 01:15:46 +0300
committerMichael Niedermayer <michaelni@gmx.at>2007-11-10 01:15:46 +0300
commitcb0d8a5f8fd00796c40de05e80e55d169154d07a (patch)
tree43dd8fe121fa27304e8fe06e6b7ec50b2add9ddf /libavcodec/intrax8.c
parent3358e879d253b7b203cff9e02eae05f0b3e1bd7c (diff)
grammar
Originally committed as revision 10985 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/intrax8.c')
-rw-r--r--libavcodec/intrax8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/intrax8.c b/libavcodec/intrax8.c
index 05c6a5140c..d3730c79f1 100644
--- a/libavcodec/intrax8.c
+++ b/libavcodec/intrax8.c
@@ -380,7 +380,7 @@ static void x8_get_prediction(IntraX8Context * const w){
c= w->prediction_table[2*s->mb_x-2 + !(s->mb_y&1) ];//block[x-1][y-1]
w->est_run = FFMIN(b,a);
- /*this condition have nothing to do with w->edges, even if it looks similar
+ /*this condition has nothing to do with w->edges, even if it looks similar
it would triger if e.g. x=3;y=2;
I guess somebody wrote something wrong and it became standard */
if( (s->mb_x & s->mb_y) != 0 ) w->est_run=FFMIN(c,w->est_run);