diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2011-01-26 22:35:56 -0500 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-01-28 22:13:26 -0500 |
commit | 2e279598793133ee9c57fd0026d672f076fde4bf (patch) | |
tree | 6365654fb1ee5fe394153ef3ee7d44b340d9e6b9 /libavcodec/vp3.c | |
parent | e5262ec44a30a9132f0361f775c5b63d20e4e4d5 (diff) | |
download | ffmpeg-2e279598793133ee9c57fd0026d672f076fde4bf.tar.gz |
Move ff_emulated_edge_mc() into DSPContext.
Diffstat (limited to 'libavcodec/vp3.c')
-rw-r--r-- | libavcodec/vp3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c index 7ba878eeff..06f55f6d47 100644 --- a/libavcodec/vp3.c +++ b/libavcodec/vp3.c @@ -1432,7 +1432,7 @@ static void render_slice(Vp3DecodeContext *s, int slice) if(stride<0) temp -= 9*stride; else temp += 9*stride; - ff_emulated_edge_mc(temp, motion_source, stride, 9, 9, src_x, src_y, plane_width, plane_height); + s->dsp.emulated_edge_mc(temp, motion_source, stride, 9, 9, src_x, src_y, plane_width, plane_height); motion_source= temp; } } |