[FFmpeg-cvslog] vp9/x86: rename vp9dsp to vp9mc

Anton Khirnov git at videolan.org
Thu Mar 16 21:13:53 EET 2017


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Sat Jul 30 19:21:57 2016 +0200| [89466de4aeaf5e359489b81b8a9920a2bc7936d6] | committer: Anton Khirnov

vp9/x86: rename vp9dsp to vp9mc

It only contains the MC SIMD, other SIMD will go into different files.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=89466de4aeaf5e359489b81b8a9920a2bc7936d6
---

 libavcodec/x86/Makefile                  | 2 +-
 libavcodec/x86/{vp9dsp.asm => vp9mc.asm} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/x86/Makefile b/libavcodec/x86/Makefile
index 3208699..204c856 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
similarity index 99%
rename from libavcodec/x86/vp9dsp.asm
rename to libavcodec/x86/vp9mc.asm
index 442fc2b..59e5668 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>
 ;*



More information about the ffmpeg-cvslog mailing list