blob: 8d5d084f240c02a47b3569f055e5889f37d20d54 [file] [log] [blame]
#!/bin/bash
# Copyright (C) 2022 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
## script to install media test files manually
MEDIA_ROOT_DIR=$(dirname $0)
export MEDIA_ROOT_DIR
cd ${MEDIA_ROOT_DIR} || exit 1
source $MEDIA_ROOT_DIR/common/copy_media_utils.sh
get_adb_options "$@"
./codec/copy_media.sh $@ || exit 1
./decoder/copy_media.sh $@ || exit 1
./drmframework/copy_media.sh $@ || exit 1
./encoder/copy_media.sh $@ || exit 1
./extractor/copy_media.sh $@ || exit 1
./muxer/copy_media.sh $@ || exit 1
./misc/copy_media.sh $@ || exit 1
./player/copy_media.sh $@ || exit 1