Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f0141e83 authored by Suyog Pawar's avatar Suyog Pawar
Browse files

frameworks/av: Change url from google cloud to lorry

Also fixed out of sync version numbers in few files in README.md

Bug: 298733419
Test: atest ExtractorFactoryTest
Test: atest HEVCUtilsUnitTest
Test: atest writerTest
Test: atest TimedTextUnitTest
Test: atest AmrnbDecoderTest
Test: atest AmrnbEncoderTest
Test: atest AmrwbDecoderTest
Test: atest AmrwbEncoderTest
Test: atest FlacDecoderTest
Test: atest Mpeg4H263DecoderTest
Test: atest Mpeg4H263EncoderTest
Test: atest Mp3DecoderTest
Test: atest ESDSTest
Test: atest ExtractorUnitTest
Test: atest AVCUtilsUnitTest
Test: atest OpusHeaderTest
Test: atest ID3Test
Test: atest MetaDataUtilsTest
Test: atest Mpeg2tsUnitTest
Test: atest com.android.media.benchmark.tests
Test: atest MediaTranscoderBenchmark MediaSampleReaderBenchmark MediaTrackTranscoderBenchmark -- --enable-module-dynamic-download=true

Change-Id: I22badacc67b5c9a1fbfa30f4d7d22c7f2c3d3dd1
parent 79ff7cde
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15,6 +15,6 @@

<dynamicConfig>
    <entry key="media_files_url">
            <value>https://storage.googleapis.com/android_media/frameworks/av/media/libstagefright/foundation/tests/HEVCUtils/HEVCUtilsUnitTest-1.0.zip</value>
            <value>https://dl.google.com/android-unittest/media/frameworks/av/media/libstagefright/tests/HEVC/HEVCUtilsUnitTest-1.0.zip</value>
    </entry>
</dynamicConfig>
+3 −3
Original line number Diff line number Diff line
@@ -22,15 +22,15 @@ To test 32-bit binary push binaries from nativetest.
adb push ${OUT}/data/nativetest/HEVCUtilsUnitTest/HEVCUtilsUnitTest /data/local/tmp/
```

The resource file for the tests is taken from [here](https://storage.googleapis.com/android_media/frameworks/av/media/libstagefright/foundation/tests/HEVCUtils/HEVCUtilsUnitTest.zip). Download, unzip and push these files into device for testing.
The resource file for the tests is taken from [here](https://dl.google.com/android-unittest/media/frameworks/av/media/libstagefright/tests/HEVC/HEVCUtilsUnitTest-1.0.zip). Download, unzip and push these files into device for testing.

```
adb push HEVCUtilsUnitTest /data/local/tmp/
adb push HEVCUtilsUnitTest-1.0 /data/local/tmp/
```

usage: HEVCUtilsUnitTest -P \<path_to_folder\>
```
adb shell /data/local/tmp/HEVCUtilsUnitTest -P /data/local/tmp/HEVCUtilsUnitTest/
adb shell /data/local/tmp/HEVCUtilsUnitTest -P /data/local/tmp/HEVCUtilsUnitTest-1.0/
```
Alternatively, the test can also be run using atest command.

+1 −1
Original line number Diff line number Diff line
@@ -15,6 +15,6 @@

<dynamicConfig>
    <entry key="media_files_url">
            <value>https://storage.googleapis.com/android_media/frameworks/av/media/extractors/tests/extractor-1.5.zip</value>
            <value>https://dl.google.com/android-unittest/media/frameworks/av/media/libstagefright/tests/extractorFactory/extractor-1.5.zip</value>
    </entry>
</dynamicConfig>
+3 −3
Original line number Diff line number Diff line
@@ -19,16 +19,16 @@ To test 32-bit binary push binaries from nativetest.

adb push ${OUT}/data/nativetest/ExtractorFactoryTest/ExtractorFactoryTest /data/local/tmp/

The resource file for the tests is taken from [here](https://storage.googleapis.com/android_media/frameworks/av/media/extractors/tests/extractor.zip).
The resource file for the tests is taken from [here](https://dl.google.com/android-unittest/media/frameworks/av/media/libstagefright/tests/extractorFactory/extractor-1.5.zip).
Download, unzip and push these files into device for testing.

```
adb push extractor /data/local/tmp/
adb push extractor-1.5 /data/local/tmp/
```

usage: ExtractorFactoryTest -P \<path_to_res_folder\>
```
adb shell /data/local/tmp/ExtractorFactoryTest -P /data/local/tmp/extractor/
adb shell /data/local/tmp/ExtractorFactoryTest -P /data/local/tmp/extractor-1.5/
```
Alternatively, the test can also be run using atest command.

+1 −1
Original line number Diff line number Diff line
@@ -15,6 +15,6 @@

<dynamicConfig>
    <entry key="media_files_url">
            <value>https://storage.googleapis.com/android_media/frameworks/av/media/libstagefright/tests/writer/WriterTestRes-1.2.zip</value>
            <value>https://dl.google.com/android-unittest/media/frameworks/av/media/libstagefright/tests/writer/WriterTestRes-1.2.zip</value>
    </entry>
</dynamicConfig>
Loading