diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-07-30 19:21:57 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-08-03 10:57:50 +0200 |
commit | 89466de4aeaf5e359489b81b8a9920a2bc7936d6 (patch) | |
tree | 0f8c510b46eb4ec42c55c431ee3eecc6ee45af98 | |
parent | 89aebc5bcc6e23a0a79c3f51c3a55c3571692ba0 (diff) | |
download | ffmpeg-89466de4aeaf5e359489b81b8a9920a2bc7936d6.tar.gz |
vp9/x86: rename vp9dsp to vp9mc
It only contains the MC SIMD, other SIMD will go into different files.
-rw-r--r-- | libavcodec/x86/Makefile | 2 | ||||
-rw-r--r-- | libavcodec/x86/vp9mc.asm (renamed from libavcodec/x86/vp9dsp.asm) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/Makefile b/libavcodec/x86/Makefile index 32086992b4..204c856340 100644 --- a/libavcodec/x86/Makefile +++ b/libavcodec/x86/Makefile @@ -125,4 +125,4 @@ YASM-OBJS-$(CONFIG_V210_ENCODER) += x86/v210enc.o YASM-OBJS-$(CONFIG_VORBIS_DECODER) += x86/vorbisdsp.o YASM-OBJS-$(CONFIG_VP3_DECODER) += x86/hpeldsp_vp3.o YASM-OBJS-$(CONFIG_VP6_DECODER) += x86/vp6dsp.o -YASM-OBJS-$(CONFIG_VP9_DECODER) += x86/vp9dsp.o +YASM-OBJS-$(CONFIG_VP9_DECODER) += x86/vp9mc.o diff --git a/libavcodec/x86/vp9dsp.asm b/libavcodec/x86/vp9mc.asm index 442fc2b8e7..59e56687f2 100644 --- a/libavcodec/x86/vp9dsp.asm +++ b/libavcodec/x86/vp9mc.asm @@ -1,5 +1,5 @@ ;****************************************************************************** -;* VP9 SIMD optimizations +;* VP9 motion compensation SIMD optimizations ;* ;* Copyright (c) 2013 Ronald S. Bultje <rsbultje gmail com> ;* |