From 89466de4aeaf5e359489b81b8a9920a2bc7936d6 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sat, 30 Jul 2016 19:21:57 +0200 Subject: [PATCH] vp9/x86: rename vp9dsp to vp9mc It only contains the MC SIMD, other SIMD will go into different files. --- libavcodec/x86/Makefile | 2 +- libavcodec/x86/{vp9dsp.asm => vp9mc.asm} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename libavcodec/x86/{vp9dsp.asm => vp9mc.asm} (99%) 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 similarity index 99% rename from libavcodec/x86/vp9dsp.asm rename to 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 ;*