diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-11-10 16:39:54 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-11-10 16:39:54 +0000 |
commit | f073a3934ae0039604f62a34fa089cd24209c85c (patch) | |
tree | 21dc9d56ca7ff1b8a210f6c9ab9f328952035c20 /libavcodec/snow.c | |
parent | 2e39d0cd5b4364a4555d477da7adb0f03c1ce750 (diff) | |
download | ffmpeg-f073a3934ae0039604f62a34fa089cd24209c85c.tar.gz |
cosmetics: Fix vissual --> visual typo.
Originally committed as revision 10997 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/snow.c')
-rw-r--r-- | libavcodec/snow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/snow.c b/libavcodec/snow.c index e9fc8cb0e0..84b18dbcab 100644 --- a/libavcodec/snow.c +++ b/libavcodec/snow.c @@ -3895,7 +3895,7 @@ static int ratecontrol_1pass(SnowContext *s, AVFrame *pict) return delta_qlog; } -static void calculate_vissual_weight(SnowContext *s, Plane *p){ +static void calculate_visual_weight(SnowContext *s, Plane *p){ int width = p->width; int height= p->height; int level, orientation, x, y; @@ -4338,7 +4338,7 @@ redo_frame: if(s->last_spatial_decomposition_count != s->spatial_decomposition_count){ for(plane_index=0; plane_index<3; plane_index++){ - calculate_vissual_weight(s, &s->plane[plane_index]); + calculate_visual_weight(s, &s->plane[plane_index]); } } |