diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-11-10 12:24:02 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-11-10 12:24:02 +0000 |
commit | 8a43317e66d1fdb64f1694d84d1343bdd0802a53 (patch) | |
tree | 47f8447404ed69cfc9a06ccf3ae15c9f0781dbd1 /libavcodec/intrax8.c | |
parent | 94472c1d49d5b0f129a76292166518aace855216 (diff) | |
download | ffmpeg-8a43317e66d1fdb64f1694d84d1343bdd0802a53.tar.gz |
cosmetics: Fix spacial --> spatial typo in function names.
Originally committed as revision 10993 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/intrax8.c')
-rw-r--r-- | libavcodec/intrax8.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/intrax8.c b/libavcodec/intrax8.c index c5a935b640..ec1567ea23 100644 --- a/libavcodec/intrax8.c +++ b/libavcodec/intrax8.c @@ -278,7 +278,7 @@ static int x8_setup_spatial_predictor(IntraX8Context * const w, const int chroma int sum; int quant; - s->dsp.x8_setup_spacial_compensation(s->dest[chroma], s->edge_emu_buffer, + s->dsp.x8_setup_spatial_compensation(s->dest[chroma], s->edge_emu_buffer, s->current_picture.linesize[chroma>0], &range, &sum, w->edges); if(chroma){ @@ -614,7 +614,7 @@ static int x8_decode_intra_mb(IntraX8Context* const w, const int chroma){ if(w->flat_dc){ dsp_x8_put_solidcolor(w->predicted_dc, s->dest[chroma], s->current_picture.linesize[!!chroma]); }else{ - s->dsp.x8_spacial_compensation[w->orient]( s->edge_emu_buffer, + s->dsp.x8_spatial_compensation[w->orient]( s->edge_emu_buffer, s->dest[chroma], s->current_picture.linesize[!!chroma] ); } |