OSDN Git Service

Separate format conversion DSP functions from DSPContext.
authorJustin Ruggles <justin.ruggles@gmail.com>
Sun, 30 Jan 2011 15:06:46 +0000 (15:06 +0000)
committerMans Rullgard <mans@mansr.com>
Wed, 2 Feb 2011 02:44:53 +0000 (02:44 +0000)
commitc73d99e672329c8f2df290736ffc474c360ac4ae
tree59e330229ee0746b5c466da278430e682fc0371b
parent770c410fbb8e1b87ce8ad7f3d7eddaa55e2b8295
Separate format conversion DSP functions from DSPContext.

This will be beneficial for use with the audio conversion API without
requiring it to depend on all of dsputil.

Signed-off-by: Mans Rullgard <mans@mansr.com>
32 files changed:
libavcodec/Makefile
libavcodec/aac.h
libavcodec/aacdec.c
libavcodec/ac3dec.c
libavcodec/ac3dec.h
libavcodec/arm/Makefile
libavcodec/arm/dsputil_init_neon.c
libavcodec/arm/dsputil_init_vfp.c
libavcodec/arm/dsputil_neon.S
libavcodec/arm/dsputil_vfp.S
libavcodec/arm/fmtconvert_init_arm.c [new file with mode: 0644]
libavcodec/arm/fmtconvert_neon.S [new file with mode: 0644]
libavcodec/arm/fmtconvert_vfp.S [new file with mode: 0644]
libavcodec/binkaudio.c
libavcodec/dca.c
libavcodec/dsputil.c
libavcodec/dsputil.h
libavcodec/fmtconvert.c [new file with mode: 0644]
libavcodec/fmtconvert.h [new file with mode: 0644]
libavcodec/nellymoserdec.c
libavcodec/ppc/Makefile
libavcodec/ppc/float_altivec.c
libavcodec/ppc/fmtconvert_altivec.c [new file with mode: 0644]
libavcodec/vorbis_dec.c
libavcodec/wma.c
libavcodec/wma.h
libavcodec/wmadec.c
libavcodec/x86/Makefile
libavcodec/x86/dsputil_mmx.c
libavcodec/x86/dsputil_yasm.asm
libavcodec/x86/fmtconvert.asm [new file with mode: 0644]
libavcodec/x86/fmtconvert_mmx.c [new file with mode: 0644]