OLD | NEW |
(Empty) | |
| 1 #!/bin/sh |
| 2 |
| 3 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. |
| 6 |
| 7 # This is to transfer the assembly codes used for Opus optimization on ARM |
| 8 # platforms, into the GNU format. |
| 9 |
| 10 SRC_DIR='celt/arm/' |
| 11 DST_DIR='celt/arm/' |
| 12 sed 's/@[A-Z,_]*@/1/g' ${SRC_DIR}armopts.s.in | perl ${SRC_DIR}arm2gnu.pl > ${DS
T_DIR}armopts_gnu.S |
| 13 perl ${SRC_DIR}arm2gnu.pl ${SRC_DIR}celt_pitch_xcorr_arm.s | sed 's/celt\/arm\/a
rmopts.s/armopts_gnu.S/g' > ${DST_DIR}celt_pitch_xcorr_arm_gnu.S |
OLD | NEW |