summaryrefslogtreecommitdiff
path: root/libavcodec/bink.c
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-07-27 15:47:02 +0100
committerMans Rullgard <mans@mansr.com>2011-07-27 16:05:49 +0100
commit1b3539d4534f9877b463fb8b7fa56b7d20dd1338 (patch)
tree7d5497ea69af1d1e536e1f42b2b1dbcdcbe6e3fc /libavcodec/bink.c
parentcbd58a872d343f5996ed7ab917c8839dbfd99eaa (diff)
dsputil: move a bink-only function to binkdsp
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/bink.c')
-rw-r--r--libavcodec/bink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bink.c b/libavcodec/bink.c
index 8e989d9dd9..8f42ff8bea 100644
--- a/libavcodec/bink.c
+++ b/libavcodec/bink.c
@@ -1050,7 +1050,7 @@ static int bink_decode_plane(BinkContext *c, GetBitContext *gb, int plane_idx,
return -1;
}
if (blk != FILL_BLOCK)
- c->dsp.scale_block(ublock, dst, stride);
+ c->bdsp.scale_block(ublock, dst, stride);
bx++;
dst += 8;
prev += 8;