]> git.sesse.net Git - ffmpeg/commit
lavc: introduce VideoDSPContext
authorRonald S. Bultje <rsbultje@gmail.com>
Sat, 15 Dec 2012 17:46:02 +0000 (09:46 -0800)
committerLuca Barbato <lu_zero@gentoo.org>
Thu, 20 Dec 2012 12:40:45 +0000 (13:40 +0100)
commit8c53d39e7f0604127bfc96fa1182c8abe3847ac6
tree18495cabf7f0e6d365871d3407f2534f2b80b653
parenta925f723a915bc0255e2673f8817af5212131763
lavc: introduce VideoDSPContext

Move some functions from dsputil. The idea is that videodsp contains
functions that are useful for a large and varied set of video decoders.
Currently, it contains emulated_edge_mc() and prefetch().

Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
37 files changed:
configure
libavcodec/Makefile
libavcodec/arm/Makefile
libavcodec/arm/dsputil_arm.S
libavcodec/arm/dsputil_init_armv5te.c
libavcodec/arm/videodsp_armv5te.S [new file with mode: 0644]
libavcodec/arm/videodsp_init_arm.c [new file with mode: 0644]
libavcodec/cavs.c
libavcodec/dsputil.c
libavcodec/dsputil.h
libavcodec/dsputil_template.c
libavcodec/h264.c
libavcodec/h264_mb_template.c
libavcodec/mpegvideo.c
libavcodec/mpegvideo.h
libavcodec/mpegvideo_enc.c
libavcodec/mpegvideo_motion.c
libavcodec/ppc/Makefile
libavcodec/ppc/dsputil_ppc.c
libavcodec/ppc/videodsp_ppc.c [new file with mode: 0644]
libavcodec/rv34.c
libavcodec/svq3.c
libavcodec/vc1dec.c
libavcodec/videodsp.c [new file with mode: 0644]
libavcodec/videodsp.h [new file with mode: 0644]
libavcodec/videodsp_template.c [new file with mode: 0644]
libavcodec/vp3.c
libavcodec/vp56.c
libavcodec/vp56.h
libavcodec/vp8.c
libavcodec/vp8.h
libavcodec/wmv2.c
libavcodec/x86/Makefile
libavcodec/x86/dsputil.asm
libavcodec/x86/dsputil_mmx.c
libavcodec/x86/videodsp.asm [new file with mode: 0644]
libavcodec/x86/videodsp_init.c [new file with mode: 0644]