diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-01-14 10:33:47 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-06-18 14:07:23 -0700 |
commit | e74433a8e6fc00c8dbde293c97a3e45384c2c1d9 (patch) | |
tree | f975b37a58a7c6e62c84c12349610ce6f40ad4d1 /libavcodec/cavs.c | |
parent | 869fc416f7c78ed4e397e0208acd1545771c0502 (diff) | |
download | ffmpeg-e74433a8e6fc00c8dbde293c97a3e45384c2c1d9.tar.gz |
dsputil: Split clear_block*/fill_block* off into a separate context
Diffstat (limited to 'libavcodec/cavs.c')
-rw-r--r-- | libavcodec/cavs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/cavs.c b/libavcodec/cavs.c index 3f21dccedf..21bc1edc23 100644 --- a/libavcodec/cavs.c +++ b/libavcodec/cavs.c @@ -759,6 +759,7 @@ av_cold int ff_cavs_init(AVCodecContext *avctx) { AVSContext *h = avctx->priv_data; + ff_blockdsp_init(&h->bdsp, avctx); ff_dsputil_init(&h->dsp, avctx); ff_h264chroma_init(&h->h264chroma, 8); ff_videodsp_init(&h->vdsp, 8); |