summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2016-07-30 19:21:57 +0200
committerAnton Khirnov <anton@khirnov.net>2016-08-03 10:57:50 +0200
commit89466de4aeaf5e359489b81b8a9920a2bc7936d6 (patch)
tree0f8c510b46eb4ec42c55c431ee3eecc6ee45af98 /libavcodec
parent89aebc5bcc6e23a0a79c3f51c3a55c3571692ba0 (diff)
vp9/x86: rename vp9dsp to vp9mc
It only contains the MC SIMD, other SIMD will go into different files.
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/x86/Makefile2
-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>
;*