diff options
author | Ben Avison <bavison@riscosopen.org> | 2014-04-16 01:51:32 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-25 02:36:11 +0200 |
commit | 9d8ecdd8ca6d248e7439e8fdf255e39eda14e0f2 (patch) | |
tree | e35abe072bfeb91f77ac48c51eb3bd69d9773aed /libavcodec/vc1dsp.c | |
parent | 270cede3f3772117454a14b620803d731036942d (diff) | |
download | ffmpeg-9d8ecdd8ca6d248e7439e8fdf255e39eda14e0f2.tar.gz |
vc-1: Add platform-specific start code search routine to VC1DSPContext.
Initialise VC1DSPContext for parser as well as for decoder.
Note, the VC-1 code doesn't actually use the function pointer yet.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vc1dsp.c')
-rw-r--r-- | libavcodec/vc1dsp.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/vc1dsp.c b/libavcodec/vc1dsp.c index acc3aea42b..787a6a6398 100644 --- a/libavcodec/vc1dsp.c +++ b/libavcodec/vc1dsp.c @@ -32,6 +32,7 @@ #include "h264chroma.h" #include "rnd_avg.h" #include "vc1dsp.h" +#include "startcode.h" /* Apply overlap transform to horizontal edge */ static void vc1_v_overlap_c(uint8_t *src, int stride) @@ -1024,6 +1025,8 @@ av_cold void ff_vc1dsp_init(VC1DSPContext *dsp) dsp->sprite_v_double_twoscale = sprite_v_double_twoscale_c; #endif /* CONFIG_WMV3IMAGE_DECODER || CONFIG_VC1IMAGE_DECODER */ + dsp->vc1_find_start_code_candidate = ff_startcode_find_candidate_c; + if (ARCH_AARCH64) ff_vc1dsp_init_aarch64(dsp); if (ARCH_ARM) |