• Home
  • History
  • Annotate
  • only in /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
History log of /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
6d8fd0a23fdc01b9414202c3de9bba41222583e6 14-Jan-2016 Hyungtae Tim Kim <hyungtaekim@google.com> Camera2 framework stress test suite

Added a new Camera2 framework stress test to put stress in
the common use cases in exercising Camera2 APIs.

Note that this stress test differs from Camera CTS in that
it focus on ensuring stability rather than functionality.
It could also provide the flexibility to get integrated with
test tools if needed.

For the initial run, most test codes are taken from CTS package
except for test fixtures to handle arguments and results for
stress test. However test implementation could be differentiated
to meet needs in stress testing over time.

Change-Id: Ie36594de3904e41f6175b8d5072b91941975d091
amera/CameraFunctionalTest.java
amera/CameraPairwiseTest.java
333578bcd45f33530cc07c7eebc4ae2f669fd1c3 10-Jun-2015 Hyungtae Tim Kim <hyungtaekim@google.com> Add bucket that unknown state playback falls into

MediaPlayerStressTest some media files are missing on the results as they
were reported neither completed nor erroneous.
This case will fall into a new category named unknown playback state so that
we could track them in media dashboard.

Bug: 21755950
Change-Id: Iefcc3e375c63d952a7d9edb418208209d87b9e08
odecTest.java
e796ff912ecae57d8cb34c9366b3596fc1029fd8 27-May-2015 Marco Nelissen <marcone@google.com> Handle unknown duration in playMediaSamples test

Bug: 21391417
Change-Id: I85d8f5921e8423da078acfe3aff34a6fcef69e78
odecTest.java
9560ddb48af0e2da7743452f8d9d6d9cd34d8438 13-May-2015 Chong Zhang <chz@google.com> MediaCodec: rename usePersistentInputSurface to setInputSurface

bug: 21045402
Change-Id: I510a3a694367b8e5a21f4a4fa2a338031fed8991
ediarecorder/MediaRecorderTest.java
ac95f1ac7764820b8deb58d4bdee4bda8b9654eb 02-May-2015 Chong Zhang <chz@google.com> MediaRecorderTest: test recording from persistent surface

Bug: 19127604
Bug: 19489395

Change-Id: I17984e0febaf0541a0ce650a07e0c485ffc41c08
ediarecorder/MediaRecorderTest.java
699780f54b7ddd7b00f891218140df663b3ab84e 08-Apr-2015 Chong Zhang <chz@google.com> MediaRecorderTest: verify capture fps meta key is set

bug: 19460202
Change-Id: I6a98089e560d2bc655e66d5bbe5d93ffb59bbeea
ediarecorder/MediaRecorderTest.java
c2a0b4482d7144e8382346ea4c22c7b89368fec0 02-Oct-2014 Neil Fuller <nfuller@google.com> resolved conflicts for merge of ee665151 to lmp-mr1-dev-plus-aosp

Change-Id: I2588c65b7a9fa43f968151a206924a804f0595a7
33253a4baa6279f81a73425b49dfb6abe5f5416e 01-Oct-2014 Neil Fuller <nfuller@google.com> Switch from FloatMath -> Math and Math.hypot where possible

The motivation is an API change: FloatMath is going to be
deprecated and/or removed. Performance is not the goal of
this change.

That said...

Math is faster than FloatMath with AOT compilation.

While making the change, occurances of:

{Float}Math.sqrt(x * x + y * y) and
{Float}Math.sqrt({Float}Math.pow(x, 2) + {Float}Math.pow(y, 2))

have been replaced with:

{(float)} Math.hypot(x, y)

Right now there is no runtime intrinsic for hypot so is not faster
in all cases for AOT compilation:

Math.sqrt(x * x + y * y) is faster than Math.hypot(x, y) with
AOT, but all other combinations of FloatMath, use of pow() etc.
are slower than hypot().

hypot() has the advantage of being self documenting and
could be optimized in future. None of the behavior differences
around NaN and rounding appear to be important for the cases
looked at: they all assume results and arguments are in range
and usually the results are cast to float.

Different implementations measured on hammerhead / L:

AOT compiled:

[FloatMath.hypot(x, y)]
benchmark=Hypot_FloatMathHypot} 633.85 ns; σ=0.32 ns @ 3 trials

[FloatMath.sqrt(x*x + y*y)]
benchmark=Hypot_FloatMathSqrtMult} 684.17 ns; σ=4.83 ns @ 3 trials

[FloatMath.sqrt(FloatMath.pow(x, 2) + FloatMath.pow(y, 2))]
benchmark=Hypot_FloatMathSqrtPow} 1270.65 ns; σ=12.20 ns @ 6 trials

[(float) Math.hypot(x, y)]
benchmark=Hypot_MathHypot} 96.80 ns; σ=0.05 ns @ 3 trials

[(float) Math.sqrt(x*x + y*y)]
benchmark=Hypot_MathSqrtMult} 23.97 ns; σ=0.01 ns @ 3 trials

[(float) Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2))]
benchmark=Hypot_MathSqrtPow} 156.19 ns; σ=0.12 ns @ 3 trials

Interpreter:

benchmark=Hypot_FloatMathHypot} 1180.54 ns; σ=5.13 ns @ 3 trials
benchmark=Hypot_FloatMathSqrtMult} 1121.05 ns; σ=3.80 ns @ 3 trials
benchmark=Hypot_FloatMathSqrtPow} 3327.14 ns; σ=7.33 ns @ 3 trials
benchmark=Hypot_MathHypot} 856.57 ns; σ=1.41 ns @ 3 trials
benchmark=Hypot_MathSqrtMult} 1028.92 ns; σ=9.11 ns @ 3 trials
benchmark=Hypot_MathSqrtPow} 2539.47 ns; σ=24.44 ns @ 3 trials

Bug: https://code.google.com/p/android/issues/detail?id=36199
Change-Id: I06c91f682095e627cb547d60d936ef87941be692
amera/CameraFunctionalTest.java
amera/CameraPairwiseTest.java
d097e7ef745714cadc299db5e8bb0ff57c255373 27-Aug-2014 Shaohan Zou <szou@google.com> Add Media Player Streaming Tests

Change-Id: I4bb78b0487d158f4ea57349b591f66eda6b325d2
odecTest.java
e0e77cb5bb2885aea3da6823daebf40e06b073bd 22-Apr-2014 Lajos Molnar <lajos@google.com> Remove VideoEditor

remove android.media.videoeditor.*

No longer supported and should not be used.

Bug: 13542518
Change-Id: I12de122443f0289ab1dfdd8b553e572a830cf412
ideoeditor/MediaItemThumbnailTest.java
ideoeditor/MediaPropertiesTest.java
ideoeditor/VideoEditorAPITest.java
ideoeditor/VideoEditorExportTest.java
ideoeditor/VideoEditorPreviewTest.java
daa98ca8d7c85b77ad794cc8d9f17e262ac41d96 14-Feb-2014 Chong Zhang <chz@google.com> support time lapse/slow motion on SURFACE source

- pass time between capture as us, in high fps case ms could
be inaccurate

- add test cases in MediaRecorderTest for time lapse/slow motion

Bug: 13032650

Change-Id: I34ecc3b39e0519753f74ae42afcaeeddfff1666a
ediarecorder/MediaRecorderTest.java
e996c419e6c9beff09b2bb8d6d5777313a0cf29f 02-Jan-2014 Chong Zhang <chz@google.com> MediaRecorderTest: add tests for getSurface() and SURFACE source

Bug: 12305192
Change-Id: I2f63799219273dc84732ba3b7a9dceb84a1f27a7
ediarecorder/MediaRecorderTest.java
2d2cd32cc7293bbb48b0f0e70a0dc7eb05cac9d3 14-Jun-2013 Marco Nelissen <marcone@google.com> Make MediaPlayer.invoke() public-and-hidden again

It's used in a bunch of other places in other repos that I don't
want to touch.

Change-Id: I6f2ec6f8066286de9b52499fc71f3f08953c3cb4
ediaPlayerInvokeTest.java
c2f9024b13aa9122797f0a5062b2cf3504f381bf 14-Jun-2013 Marco Nelissen <marcone@google.com> Fix build

We don't need a separate test for invoke() because there are other
tests that exercise it.

Change-Id: I8c8f3593e7e9eed3c53997453f0f66ba8374e79e
ediaPlayerInvokeTest.java
cf88be6dc843d972c98ff100430b16aa22c60516 11-Jun-2013 Igor Murashkin <iam@google.com> Merge "camera: Add Java binder proxies for some existing binder interfaces"
4491d684f47fcf1e05652f910587a930be8a4135 01-Jun-2013 Igor Murashkin <iam@google.com> camera: Add Java binder proxies for some existing binder interfaces

Note that anything not in the AIDL interfaces, will NOT be magically
compatible if you just add it there. It probably requires a change in
frameworks/av/camera as well.

Bug: 9213377
Change-Id: I91d3efb755ed2e3ace139f83573f86efdccccd06
ameraTest.java
c6cedc84f49b8b72d32069cfa515a51b8c128cc0 02-May-2013 Jason Noguchi <jnoguchi@google.com> Refactor of camera stress test to add camera test helper. Also add
additional functional tests for: flash, exposure, white balance, and
focus mode. Also add pairwise tests.

Slight refactor to add camera test helper and also additional
tests for: flash, exposure, white balance, and focus mode

Bug: 9174937

Change-Id: I3d26b545dc8ff972c8173066df59a2e572a837ef
amera/CameraFunctionalTest.java
amera/CameraPairwiseTest.java
83a017b6b7c099d1a0293e5839be6477325aef06 20-Mar-2013 Eric Laurent <elaurent@google.com> audio service: add config option for fixed volume

Add a boolean configuration option config_useFixedVolume indicating if
stream volumes or master volume can be modified.
If the option is true, the AudioManager volume and mute APIs will be no ops and the
volumes will be maxed out.
To be consistent:
- the ringer mode is forced to normal and cannot be modified
- volume panel is never displayed
- volume settings are not available
- ringer mode global action is not displayed.

The default for this option if false.

This is useful for a class of devices intended for connection to a digital
audio output only, where the volume is directly controlled on the audio sink.

Bug 8161458

Change-Id: I2571d5ee79952ef0914d8fd1985816467a80adcd
udio/MediaAudioManagerTest.java
3a084af2e90849aaa8beb3a610189e3399c63ea0 07-Nov-2012 Kenny Root <kroot@google.com> Correct executable bit for source files

Many media files and source code files were marked as executable in Git.
Remove those.

Also a shell script and python script were not marked as executable.

Change-Id: Ieb51bafb46c895a21d2e83696f5a901ba752b2c5
ideoeditor/MediaItemThumbnailTest.java
ideoeditor/MediaPropertiesTest.java
ideoeditor/VideoEditorExportTest.java
7a9734d769d97470ce6fac0594dd007804d33432 19-Apr-2012 James Dong <jdong@google.com> Unhide APIs for timed text and multiple audio track switch APIs

o made all the member variables in helper classes for TimedText to be public and final
since they are read-only
o removed Text and TextPos helper classes
o added two public methods in TimedText class: getText() and getBounds()
o cleaned up the javadoc of related methods in MediaPlayer.java and TimedText.java classes
o make the inner classes of TimedText static and final
o change invoke and let it throw RuntimeException on failure (thus a test class needs to be
modified also).

o related-to-bug: 6110705,5542712

Change-Id: Ia1dd1fd5eb8e9fd1b61c6c0d67405edb627a3002
ediaPlayerInvokeTest.java
e35b3e052dab756113304cb394980e9f271b1613 27-Apr-2012 Yu Shan Emily Lau <yslau@google.com> Fix the test cases which fail to launch the camera
in the device which only has one camera.

Change-Id: Ia34087715e49f1aa3e86f3f85cb4e77168323321
ameraTest.java
ediarecorder/MediaRecorderTest.java
997592b3ce5492e500aebb87066bbeab6c4e4599 17-Apr-2012 Jean-Michel Trivi <jmtrivi@google.com> Add functional tests for Visualizer volume scaling mode

Add test to set/get the volume scaling mode.

Add test to verify that volume decreases diminish the commputed
energy.

Change-Id: I0a5d45d064a46a18e5c4b9d7a304c9572f100cdf
udio/MediaVisualizerTest.java
a79edb72333ceda76c73166acef139c8668ee829 05-Apr-2012 Yu Shan Emily Lau <yslau@google.com> Insert the 2 seconds before test start to
workaround the race conditon for requesting
the surface.

Change-Id: Ic8ba358400492860b0d38fc71468ea4bb4d3d7bd
ediaplayback/MediaPlayerApiTest.java
7dd65078f6a40ed98ae8cddc5d7976d4fe629a29 17-Jan-2012 Jean-Michel Trivi <jmtrivi@google.com> More AudioManager tests

Add tests for AudioFocus:
- create a looper for AudioManager to use so listener callbacks can be used
- test each type of audio focus gain causes the expected type of focus loss
- stress test audio focus request and abandon, with and without a listener

Change-Id: I7d9c84ccd8ea49cf20ede57b1245899a81e99ab0
udio/MediaAudioManagerTest.java
e1103cfc781b09d1a227f448374473093a451d6f 20-Jan-2012 James Dong <jdong@google.com> Remove obsolete TODO comments

Change-Id: Ie2353f11c4bbea5699cf9b824bb4b6aa113e3472
ideoeditor/MediaItemThumbnailTest.java
ideoeditor/MediaPropertiesTest.java
ideoeditor/VideoEditorAPITest.java
ideoeditor/VideoEditorExportTest.java
ideoeditor/VideoEditorPreviewTest.java
71087709aad07cc6492f64444acf9acc48495003 08-Dec-2011 Eric Laurent <elaurent@google.com> Merge "Fix audio effect tests"
96bea6a5e9a362c21fbdb98f0e67212de7dffdc6 06-Dec-2011 Hong Teng <hongteng@google.com> Fix for issue 5712743 video editor functional test : testPreviewDuringExport fails
-Correct the invalid filename, which contains control character.
And with the invalid filename, the cts fails only on crespo, but passes on stingray and prime.

Change-Id: I77862e55e8ee990f72f617a804f26fd724914b5b
ideoeditor/VideoEditorPreviewTest.java
613ed4c69a53e6ffb1f104c7d45a0c6dd41c8eb0 02-Dec-2011 Hong Teng <hongteng@google.com> Merge "Fixd for 5490443 Native crash while exporting a video - Add new onError callback to PreviewProgressListener, which is used to indicate video editor application for the error that has occurred during priviewing. With this modification, the application must implement the onError method, and then VideoEditorPreviewTest.java is changed accordingly." into ics-mr1
63149c81adf79f43c6508647614247277f8052e2 01-Dec-2011 Hong Teng <hongteng@google.com> Fixd for 5490443 Native crash while exporting a video
- Add new onError callback to PreviewProgressListener, which is
used to indicate video editor application for the error that has occurred during
priviewing.
With this modification, the application must implement the onError method,
and then VideoEditorPreviewTest.java is changed accordingly.

Change-Id: I15610b8907fcf8bd35a3c69ad7c07b5175a6e309
ideoeditor/VideoEditorPreviewTest.java
99b4523b753f35122e23e90c95f57399c3f8bb10 24-Nov-2011 Yu Shan Emily Lau <yslau@google.com> Add the min fps option to set
the min fps in the media recorder test.
Add the procmem log to the media
memory stress test.

Change-Id: Icf82f12adeca7072a171991d1d6a994e4bb7764a
ediarecorder/MediaRecorderTest.java
c81e0ad9bd438575389623f523a28e2e6ca69236 19-Nov-2011 Eric Laurent <elaurent@google.com> Fix audio effect tests

Make sure that audio effect tests relying on audio to actually play on
the music stream are not affected by current ringer mode. Silent mode
can mute music stream on tablets.

Issue 5638685.

Change-Id: Icdf14696986145ae3f50fc15d358335487d3525f
udio/MediaEnvReverbTest.java
udio/MediaPresetReverbTest.java
udio/MediaVisualizerTest.java
be5fc40fe720e684bc6a976f0b1f4ccbf83847c2 03-Nov-2011 Eric Laurent <elaurent@google.com> Remove unreliable effect tests.

Remove automated tests checking that audio effects are actually processing
the signal based on visualizer captures.
This method is too unreliable when used to measure energy at given frequencies and
often gives false negatives.

Issue 5542879.

Change-Id: Ib31158fd84ff9edc85712ec03c0c9957370c8f84
udio/MediaBassBoostTest.java
udio/MediaEqualizerTest.java
udio/MediaVirtualizerTest.java
0a6cd02b4824f9f974257362eddef0c5c5d46ab3 28-Sep-2011 Xia Wang <xiaw@google.com> am b2d17234: Merge "Reorganize media framework functional tests. Group tests into sub-packages" into ics-factoryrom

* commit 'b2d17234b77cda555905e0da997f543708374246':
Reorganize media framework functional tests. Group tests into sub-packages
db6028508c8eb31a0de1dcdfc410ddfe6df7c5ad 28-Sep-2011 Xia Wang <xiaw@google.com> Reorganize media framework functional tests.
Group tests into sub-packages

Change-Id: I878e14487142de495fc646037d5d0b51e39341bd
ediaAudioEffectTest.java
ediaAudioManagerTest.java
ediaAudioTrackTest.java
ediaBassBoostTest.java
ediaEnvReverbTest.java
ediaEqualizerTest.java
ediaItemThumbnailTest.java
ediaPlayerApiTest.java
ediaPresetReverbTest.java
ediaPropertiesTest.java
ediaRecorderTest.java
ediaVirtualizerTest.java
ediaVisualizerTest.java
imTonesTest.java
ideoEditorAPITest.java
ideoEditorExportTest.java
ideoEditorPreviewTest.java
udio/MediaAudioEffectTest.java
udio/MediaAudioManagerTest.java
udio/MediaAudioTrackTest.java
udio/MediaBassBoostTest.java
udio/MediaEnvReverbTest.java
udio/MediaEqualizerTest.java
udio/MediaPresetReverbTest.java
udio/MediaVirtualizerTest.java
udio/MediaVisualizerTest.java
udio/SimTonesTest.java
ediaplayback/MediaPlayerApiTest.java
ediarecorder/MediaRecorderTest.java
ideoeditor/MediaItemThumbnailTest.java
ideoeditor/MediaPropertiesTest.java
ideoeditor/VideoEditorAPITest.java
ideoeditor/VideoEditorExportTest.java
ideoeditor/VideoEditorPreviewTest.java
5e7acae2c3e4cf345e3fa7bf10e3c62f9e69e6be 23-Sep-2011 Eric Laurent <elaurent@google.com> Fix issue 5355047: Automated effect tests fail.

Fixed several regressions in automated audio effect tests due
to changes in effect framework and visualizer FFT output range.

- Do not suspend Volume effect on session 0 when effects are
enabled on specific sessions.
- Adapt energy detection thresholds to new visualizer FFT range.
- Leave more time for BassBoost and Virtualizer effects to ramp up
before measuring the effect.
- Removed second insert reverb left by mistake on the player session
in preset reverb test.

Change-Id: I7a1ad1372d783fa7900eb9dd1d3b47f54d8d766f
ediaBassBoostTest.java
ediaEnvReverbTest.java
ediaEqualizerTest.java
ediaPresetReverbTest.java
ediaVirtualizerTest.java
ediaVisualizerTest.java
3f43e7d37f8efb0a0c6c07d1d0dd5103e26922d3 14-Sep-2011 Rajneesh Chowdury <rajneeshc@google.com> Fix for bug 5309242 [Prime] VideoEditorAPITest testVideoContentHD failed

Change-Id: Ibd52a3bda8e1cb17f1c110cc219f2c71a46e5122
ideoEditorAPITest.java
4cf9a3b857e78d7a9a71b104d8531aa18a150978 10-Sep-2011 James Dong <jdong@google.com> Merge "Fix another hardcoded frame rate in the media framework test"
a18886ca08b32c5c949a285f27c8713e05e3dd11 09-Sep-2011 Chih-Chung Chang <chihchung@google.com> Fix 5278371: OOM in MediaItemThumbnailTest

Because we request 400x240 thumbnails. 100 thumbnails needs 38M,
which is too much. Change it to 70 now.

Also handle the case if the thumbnail callback throws exception.

Change-Id: Iac4ee72f308b7c7a6ae860983197601cf89bee8f
ediaItemThumbnailTest.java
b05a600352dcd4517c62c7503edf9eea22359280 08-Sep-2011 James Dong <jdong@google.com> Fix another hardcoded frame rate in the media framework test

Change-Id: I7d7f9d0812a0228dbf924084a32dbede0338b421
related-to-bug: 5264298
ediaRecorderTest.java
3ced044154945f9d60983032278e00fe28f4ab1b 13-Aug-2011 Rajneesh Chowdury <rajneeshc@google.com> Fix for 4142219 Don't hard code platform-specific limitations (Jni/ Java)

Also fixes 5118207 add other video codec support for video editor export.

Change-Id: If72427173bd8ff684af07ba00f4425c1deef29c6
ediaPropertiesTest.java
ideoEditorExportTest.java
09f1735fadf985f321abef5fe696d0b80c6b46c7 12-Aug-2011 Eric Laurent <elaurent@google.com> Fix issue 5144429: CTS test fails for AudioEffects

android_media_AudioEffect_native_setup() was not initializing
properly the effect descriptor for audio pre processings.

AudioEffect tests should create per processing effects on a valid
AudioRecord session.

Change-Id: Ia1862ca91c98e272f9374b9225a7d4ce7ef132fc
ediaAudioEffectTest.java
e3065f23a25b778c9fc718f01def2e1cb264aef8 16-Jul-2011 Rajneesh Chowdury <rajneeshc@google.com> Merge "Fix for issue 5007510 AssertionFailed for MediaPropertiesTest#testPropertiesH263QCIF"
aea7d6cdfbe7e60b5ac4071759c39bfb2b11af3f 15-Jul-2011 Rajneesh Chowdury <rajneeshc@google.com> Fix for issue 5007510 AssertionFailed for MediaPropertiesTest#testPropertiesH263QCIF

Change-Id: I1c7c32fee491871223ad12df4696363415902377
ediaPropertiesTest.java
559bb7951f283264e241df6845fef5bbe63b7f81 08-Jul-2011 Rajneesh Chowdury <rajneeshc@google.com> Fix for issue 5007228 IllegalArgumentException when testing VideoEditorAPITest#testEffectKenBurn

Change-Id: Ic8b4360cdabb157fa7739552b73e3c3daab88129
ideoEditorAPITest.java
88f7194f6d93b6bb5822ad3c45ae9e59395212b9 26-Jun-2011 James Dong <jdong@google.com> Add a testcase to test PNG files support for KenBurn effect.

Change-Id: I1d0b3ff7b5aa21c25c141b440521e64b4a82043d
related-to-bug: 4861071
ideoEditorAPITest.java
c4fe54a2385e8e67dcfed6b2c365214ed020d245 14-Jun-2011 Yu Shan Emily Lau <yslau@google.com> Add new open source test contents.
Removed old test files.
Updated the tests with new test contents.

Change-Id: Id74f1aae391ef868843ab4058ae9a9328d98f868
ediaMetadataTest.java
ediaPlayerApiTest.java
d1d17b165139681dc66c000fdfe9e14fb1bc35c0 07-Jun-2011 Yu Shan Emily Lau <yslau@google.com> Cleaned up the old test cases and test media files.

Change-Id: Icc3c04c69b11b2bb91588a8bb916baf69594e8d3
ediaMetadataTest.java
ediaPlayerApiTest.java
35c654c3f587af787ddac276f69a2883e8bf1aca 22-Mar-2011 shailendra <shailendray@google.com> am 8e0f2d71: am b819dcd4: am 8483073e: Merge "Fix for testPropertiesWMVFile case failed with build HMI75B(4128259)" into honeycomb-mr1

* commit '8e0f2d71a1d2353228ba04562c8189f4904a11d1':
Fix for testPropertiesWMVFile case failed with build HMI75B(4128259)
602b3286ffe7da6e70bf2d9e4861a5d74ff7c473 18-Mar-2011 Eric Laurent <elaurent@google.com> Fix issue 3509396: AudioEffect.getParameter JAVA.

Removed dead/buggy code in AudioEffect.getParameter() and
AudioEffect.command() that was meant to return the actual length of
meaningful data in the returned parameter or command reply.

This is replaced by the method return status indicating this length when
positive (negative return codes still indicate the same errors as before).

Modified automated AudioEffect tests accordingly.

Change-Id: Ie89617f912766b8dee73b81f92af9c48027c982d
ediaAudioEffectTest.java
d0c281328903189b42585948054cfb14a1385d50 18-Mar-2011 shailendra <shailendray@google.com> Fix for testPropertiesWMVFile case failed with build HMI75B(4128259)

Change-Id: I0a7081f901684ff7c7388b830afc6ae2f2ce7bcd
ediaPropertiesTest.java
c8b4efdd743995219af494c5cdcb036591d8e06e 17-Mar-2011 shailendra <shailendray@google.com> Fix for testThumbnailForInvalidFilePath and testPropertiesForNonExsitingFile failed with HMI75B(4124235)

Change-Id: Iab523e666c11b7f99aac71c761a4295d32ca026c
ediaItemThumbnailTest.java
ediaPropertiesTest.java
9dab78470592be7542b9c0f9090603ed0dc80949 16-Mar-2011 Yu Shan Emily Lau <yslau@google.com> Suppress the 1 hour video editor export test case which exceed the 5 mins large test limit.
Add the media test util for capturing the memory usage.
Bug# 4108259
Change-Id: I751a622ff5dfbb1d563f63a2cbc9db71d194a0f6
ideoEditorExportTest.java
62f755ac65cb40f231a7fa0695724ae01975d01c 26-Feb-2011 Yu Shan Emily Lau <yslau@google.com> Remove the hard coded media recorder test cases.
Add the native heap dump catpure functionality.

Change-Id: I434ff886152cbb9b2b9a4e39c75bfd016e0e50a0
ediaRecorderTest.java
c2b9eb88fd6ee37aacd36a17a8236d4ead23ac10 18-Feb-2011 Basavapatna Dattaguru <dattaguru@google.com> VideoEditor:IssueID:3396697: Updated Preview Test code

Change-Id: I895bcdbb0c65679b837e616de58e533a080bbf2f
ideoEditorPreviewTest.java
ce6ff2c2e6f5ac1d4e86c94b68587b8634032908 17-Feb-2011 Yu Shan Emily Lau <yslau@google.com> Update the summary output format which match the PM data posting.

Change-Id: I3e3f7313020da6d0d219acd90ac9edc8a4d0bce4
odecTest.java
85305f04d52e921de0452a1efef01175b1bbac3c 16-Feb-2011 Yu Shan Emily Lau <yslau@google.com> Change the media player stress test to repor the total number of failure and the total number of info.
Register the surface callback in the test application bug# 2909064

Change-Id: I3420b5bc81e276b50f612c126ed5fc1f4f16c08c
odecTest.java
0554f32afd5309344b8d0ddcebd5ff7bc6ae3410 14-Feb-2011 Basavapatna Dattaguru <dattaguru@google.com> VideoEditor:IssueID:3396697: Added Preview Test code

This has dependency on Ide5ee82b24806a52b4e612db4bc3c34f75e4465a
Removed trailing space in xml file
Removed dependency on test cases other than Preview & API

Change-Id: I835c0ca17d6ff15819407eb930cca8a08b095287
ideoEditorPreviewTest.java
c0171d3e7b3459168e8db76b7f5d72b07f69f42a 13-Feb-2011 Basavapatna Dattaguru <dattaguru@google.com> VideoEditor: IssueID:3396697:Added TN,MP,Exp,API test codes

Updated with review comments: code cleaning in MP.

Change-Id: Ide5ee82b24806a52b4e612db4bc3c34f75e4465a
ediaItemThumbnailTest.java
ediaPropertiesTest.java
ideoEditorAPITest.java
ideoEditorExportTest.java
86e9e9be1e6cbcc0f8dbb2ecc41fafa7ddb5f8d1 11-Feb-2011 Basavapatna Dattaguru <dattaguru@google.com> Video Editor CTS Test Code: annotation suppress

Fix for Issue: ID:3396697
Updated with review comments

Change-Id: Ie20e60598f046b23ed49b2533e9d500607a23c17
ideoEditorAPITest.java
a58389bdc1f3c41014003ab6e1a5e9a0ca37d789 08-Feb-2011 Yu Shan Emily Lau <yslau@google.com> Remove the old media player stress test.
Add the new playback stress that which caputred the total number of crashes, frame drops from a list of video which
side-loaded to the device.

Change-Id: I41d54b5286da0aecb52a37feec176d8ae5456d9e
odecTest.java
ediaPlayerApiTest.java
4b9969af57137736e70df68844f198a3b69fcb4c 27-Jan-2011 Basavapatna Dattaguru <dattaguru@google.com> Revert "Fixes Issue ID: 3396697"

This reverts commit 8b9ba616444a265df6cd2b4f4a0a39d808c65ade.
ediaItemThumbnailTest.java
ediaPropertiesTest.java
ideoEditorAPITest.java
ideoEditorExportTest.java
ideoEditorPreviewTest.java
8b9ba616444a265df6cd2b4f4a0a39d808c65ade 18-Jan-2011 Basavapatna Dattaguru <dattaguru@google.com> Fixes Issue ID: 3396697

Updated with annotation LargeTest

Copyright changed to 2011

Review reworked and with new test contents

Video Editor CTS Test code

Change-Id: Ia37956ef39fafcc5d969996c1791fce8663aa0fe
ediaItemThumbnailTest.java
ediaPropertiesTest.java
ideoEditorAPITest.java
ideoEditorExportTest.java
ideoEditorPreviewTest.java
11eab056dd0133a390169d3581edf3eef26d6a54 06-Jan-2011 James Dong <jdong@google.com> Publish MediaMetadataRetriever.java as public API

o Removed setMode() methods and related mode constants
o Removed some of the unused the metadata keys
o Updated the javadoc

o part of a multi-project change.

bug - 2433195

Change-Id: I5ed167f1fd6a53cb143b7dc385b149431d434438
ediaMetadataTest.java
28bec9ebceba9df6e7400d18c1e6b8a04430114e 06-Dec-2010 Yu Shan Emily Lau <yslau@google.com> Merge "Suppress the unsupported camera recording size (ie QVGA and SQVGA)"
e8f317d32ccf09f613f91da75965532a05dd4bca 04-Dec-2010 Yu Shan Emily Lau <yslau@google.com> Suppress the unsupported camera recording size (ie QVGA and SQVGA)

Change-Id: I34b6433f0aae4a117b2467069523a62e44bf9bbe
ediaRecorderTest.java
f6bd1ea0c79516a5ef3c0c463761deec1a80e419 04-Dec-2010 James Dong <jdong@google.com> Replace MediaMetadataRetriever.captureFrame() with MediaMetadataRetriever.getFrameAtTime()

as part of the preparation for publishing MediaMetadataRetriever as public Java API

bug - 2433195

Change-Id: I6e8a771347e3d89bfe359ae403ebfe3205ea6313
odecTest.java
c5d4730ed1d7598a6c4f2b92efbafa2989b56670 11-Nov-2010 James Dong <jdong@google.com> Fix testWAVSeekToEnd() testcase

The testcase does not depend on the availability of WMV decoder

Change-Id: I983f6d5954242a28fb9818fa03447b4afe7ad3d1
ediaPlayerApiTest.java
1a5149e5d7f2dddc8b324f7695e69fd89af73c52 22-Sep-2010 Eric Laurent <elaurent@google.com> Fix issue 3022800.

- Created sub-package android.media.audiofx for audio effects.
- Hid AudioEffect class contructor, methods and variables not needed by
applications
- Added more javadoc comments for AudioEffect Class

Change-Id: Ibbb40d4e714bb248aa32cf82d7763d74efae96d1
nergyProbe.java
ediaAudioEffectTest.java
ediaBassBoostTest.java
ediaEnvReverbTest.java
ediaEqualizerTest.java
ediaPresetReverbTest.java
ediaVirtualizerTest.java
ediaVisualizerTest.java
ec1e9c7a441d6a8ba6206386a1fb43652f6bbd36 22-Sep-2010 Eric Laurent <elaurent@google.com> Fix more audio effects auto tests

commit 672c0dc3a04cb149691603342c319994e21235cb broke the energy probe
used by auto tests to verify that an effect is actually enabled.
The probe is based on the Visualizer which now scales the capture to maximise
the signal level: this prevents from detecting level changes between subsequent captures.
Playing sound at a lower volume moves the signal level out of the range where
scalling occurs and makes comparison possible again.

Change-Id: Ib56dec6e619c6d778dcc3ca6453091bf6136f290
ediaBassBoostTest.java
ediaEqualizerTest.java
ediaVirtualizerTest.java
71fe631c78756da48662f8ee220fa7b09f5413fb 22-Sep-2010 Eric Laurent <elaurent@google.com> Fix broken insert reverb auto tests.

commit 27a2fdfb8ad1606bdb686c35e30ae894dd037588 changed the
insert reverb behavior when it is attached to a track in that
the reverb tail is silenced immediately when the track is paused.
The tests have been modified to test the insert reverb on session 0.

Change-Id: I90c6fec40167966853acfeaa4dec2b96f9e7839f
ediaEnvReverbTest.java
ediaPresetReverbTest.java
391e2d0d88c1acd87b1503be276cfa4e7ce66c88 24-Aug-2010 Eric Laurent <elaurent@google.com> Added automated tests for reverb audio effect.

- Added tests for preset and environmental reverb to functional media frame work tests.
- created a new class for energy probing used by all audio effect tests and corrected energy calculation.

Change-Id: Ib8109e70020176a87538309eb028109b81b93dde
nergyProbe.java
ediaBassBoostTest.java
ediaEnvReverbTest.java
ediaEqualizerTest.java
ediaPresetReverbTest.java
ediaVirtualizerTest.java
441ec6bd106a6ac09ff0ceed1f8d437c33cfc156 28-Jul-2010 Eric Laurent <elaurent@google.com> Added tests for audio effects in MediaFrameworkTest

This CL adds a set of automated functional tests for the AudioEffect class
and the following derived classes:
BassBoost, Equalizer, Virtualizer and Visualizer.

These tests require the following file on the SD card:
/sdcard/media_api/music/sine_200+1000Hz_44K_mo.wav

Change-Id: I6ec3ec6f9ede10ccf2dd3b1e9ee4b08396740dee
ediaAudioEffectTest.java
ediaBassBoostTest.java
ediaEqualizerTest.java
ediaVirtualizerTest.java
ediaVisualizerTest.java
620a4240366f13c3359c6825c92e831563cc11b6 07-Jul-2010 James Dong <jdong@google.com> Fix some bugs in the MediaProfileReader
Because the video and audio encoders were stored in the same map, when we retrieve the name from the map, we can get a incorrect name.

Change-Id: I3857422bfe9173baae53e4f3d258b055f51ad9f2
ediaRecorderTest.java
f75e370e127b7c7bb6b6d5cebaa07abec36794b2 30-Apr-2010 Ray Chen <raychen@google.com> Fix issue 2622023 Clean up all hardcoded '/sdcard' in camera related codes.

Change-Id: I8a509d957a7b67ee1f59dc4ef5139c4e28adeb9c
ameraTest.java
42349d03bf1971e56a6845441ac89fb232c011d0 09-Apr-2010 Yu Shan Emily Lau <yslau@google.com> Remove the checkStremingServer checking as it is unstable and introduce the flakiness.

Change-Id: I26e48366998e3692ad8a3394a0a0241832e99a6d
ediaPlayerApiTest.java
97a9c6a7bb242fa09ef15b5d044b49d746a105c7 07-Apr-2010 Marco Nelissen <marcone@google.com> Don't check whether a specific named activity supports mp3 playback,
just that there is at least one that does.
Fixes bug 2534382.
Change-Id: I00d9ac49bd91f161388d5c3de47b1b6abe9e8d9c
ediaMimeTest.java
e11bafec8d6c887c6ae95fa3d39c202859e86d48 02-Apr-2010 Yu Shan Emily Lau <yslau@google.com> Add the test template for the media audio manager test.

Change-Id: I55b5de0c55dbfded8d972f7378da3c19a613978c
ediaAudioManagerTest.java
59411b3373dca7582aa1a248d4cff4c2330ee224 25-Mar-2010 Wu-cheng Li <wuchengli@google.com> Fix testCameraPreviewMemoryUsage test.

Looper.quit() is asynchronous. The looper may still has some
preview callbacks in the queue after quit is called. The preview
callback still uses the camera object (setHasPreviewCallback).
After camera is released, RuntimeException will be thrown from
the method. So we need to join the looper thread here.

This change also fixes a potential race condition.

bug:2521202
Change-Id: If69bbb3125d1d30192563559579b87c20fa5aac8
ameraTest.java
806cdd82f0b5b1f720ee26ef3f20c8c1ec034f12 12-Mar-2010 Yu Shan Emily Lau <yslau@google.com> Update the new activity name.

Change-Id: I94d986a5a7f3f8ebf0b7491adf3887b21f1de1eb
ediaMimeTest.java
0fc6bc4cac6391f048f0f2748b3e979effe0924b 27-Feb-2010 James Dong <jdong@google.com> Clean up MediaRecorder for public Java SDK
- update comments and fix a check in setAudioChannels()

bug - 2362412
ediaRecorderTest.java
1b7babd2cce5bb10adac7b061cf7ba065d480edb 16-Feb-2010 James Dong <jdong@google.com> Use Java API from xml configuration in the test application
ediaRecorderTest.java
620144029819df06bda2452fa3ec15334f66bd65 22-Feb-2010 Wu-cheng Li <wuchengli@google.com> Increase the sleep time to fix testTakePicture.

One of the build needs 5 seconds for snapshot in low light. I don't want to
increase the sleep time, but this is what we have now.

bug:2141755
ameraTest.java
eea6ecdfce33178cee3c4b20fe230d659421e72c 26-Jan-2010 Yu Shan Emily Lau <yslau@google.com> Add the new golden thumbnail image as the PV and stagefright implementations in capturing thumbnail is different.
ediaPlayerApiTest.java
06b3ff7d5a7903d6804d295110820c121629ee4d 20-Jan-2010 Andreas Huber <andih@google.com> Make the MediaMetadataTest a little more lenient when it comes to verifying the duration of media files, only require that the returned duration is within 100ms of the expected one, as the PV and stagefright implementations differ slightly.

related-to-bug: 2377534
ediaMetadataTest.java
9d7e75eb0c774e36cbfbe71f37cedec6f1cc5331 10-Nov-2009 Gloria Wang <gwang@google.com> am bf964e6a: Merge change Ic060d86f into eclair

Merge commit 'bf964e6a0488c25bfe18d2c041aafe42cf493b9e' into eclair-mr2

* commit 'bf964e6a0488c25bfe18d2c041aafe42cf493b9e':
Check whether test server is up before running tests which use streaming files.
c060d86f7dcc2759b94867e5c0c1105b31af5309 10-Nov-2009 Gloria Wang <gwang@google.com> Check whether test server is up before running tests which use streaming files.
ediaPlayerApiTest.java
99588d590f0965beb899606a79db0889601c7ec0 06-Nov-2009 James Dong <jdong@google.com> am 1e495da1: Merge change I4b03c2cd into eclair

Merge commit '1e495da19f3f0061de38821a4ac733dca833b3eb' into eclair-mr2

* commit '1e495da19f3f0061de38821a4ac733dca833b3eb':
Add windows media support check in MediaMetadataTest.java and MediaPlayerApiTest.java
b1c85ec47a6ee026a5d7ee4c0e683b9cbd6599e5 04-Nov-2009 James Dong <jdong@google.com> Add windows media support check in MediaMetadataTest.java and MediaPlayerApiTest.java
ediaMetadataTest.java
ediaPlayerApiTest.java
d6af2e0cbf144b091d9c9d1bf2f3061547220c80 03-Nov-2009 Android (Google) Code Review <android-gerrit@google.com> Merge change I43a335c3 into eclair

* changes:
Suppress takePicture test from continuous DO NOT MERGE.
43a335c3cc8c78d64703b9f4755c3cef595e3839 31-Oct-2009 Brett Chabot <brettchabot@android.com> Suppress takePicture test from continuous DO NOT MERGE.

Bug 2141755
ameraTest.java
c8c7ca7bd769df9288575b322e10ebf1fb22e4a5 31-Oct-2009 Brett Chabot <brettchabot@android.com> Remove testCheckMediaPlaybackHandlesApplicationItunes from continuous.

This test causes the whole suite to hang.
ediaMimeTest.java
34831c9330d4f2993ac1d698a7e176c4b8848b48 25-Sep-2009 Yu Shan Emily Lau <yslau@google.com> Removed the device type checking
ediaRecorderTest.java
5b0b63b67489ae3fb14ad2fb000f0ad8977f8f30 25-Sep-2009 Yu Shan Emily Lau <yslau@google.com> Suppress the testPing as we moved the release test target to the userdebug. This test rely on a mock_media_player.so which build under the eng build
ediaPlayerInvokeTest.java
dc1af5befaa21e92c41dd6e173b2d6fb859cdd23 22-Sep-2009 Yu Shan Emily Lau <yslau@google.com> 1) Add the wma / wmv profile reader.
2) Add the flag which check the wma/wmv enable properties. If the codec is not enable, then skip the wma / wmv related test cases.
3) Added a workaround which let the testcodecspecific test case continue even though there is a failure in the middle of the test. Besides, take out the remvoeFile for temporary usage.
ediaPlayerApiTest.java
ediaRecorderTest.java
17d7ea4947dfad101ae689f3b717ba0a52945155 19-Sep-2009 Yu Shan Emily Lau <yslau@google.com> There is a know issue in PV regarding the video size return. Need to put a 1 second sleep before we get the video dimension
ediaRecorderTest.java
9d7b2fa80858dada3013af47007046c0cf5ec2ea 18-Sep-2009 Yu Shan Emily Lau <yslau@google.com> Suppressed the invalidFrameRate as the framework is not throwing the IOException anymore.
ediaRecorderTest.java
bc95d663adf047116d0286b4a797e60ae2410fec 18-Sep-2009 Yu Shan Emily Lau <yslau@google.com> Modified the validation to use singal media player instance.
ediaRecorderTest.java
1619367ab823150fa8856d419abe02ceb75886f1 15-Sep-2009 Yu Shan Emily Lau <yslau@google.com> new file: tests/MediaFrameworkTest/src/com/android/mediaframeworktest/MediaProfileReader.java
modified: tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/MediaRecorderTest.java
Added a new test suite which parse the system media properties and group in into the high quality and low quality recording tests.

new file: tests/MediaFrameworkTest/src/com/android/mediaframeworktest/MediaProfileReader.java
modified: tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/MediaRecorderTest.java
ediaRecorderTest.java
d3b0d642c9f87acf586868139d4a54f43b2a71ad 28-Aug-2009 Yu Shan Emily Lau <yslau@google.com> modified: res/layout/surface_view.xml
modified: src/com/android/mediaframeworktest/MediaFrameworkTest.java
modified: src/com/android/mediaframeworktest/functional/MediaPlayerApiTest.java
Fixed the async mp3 playback test case and also switch the base activity to full screen.

modified: src/com/android/mediaframeworktest/functional/MediaPlayerApiTest.java

modified: tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/MediaPlayerApiTest.java

modified: tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/MediaPlayerApiTest.java
ediaPlayerApiTest.java
523018f1828884e96b1265f3e347410280577945 25-Aug-2009 Yu Shan Emily Lau <yslau@google.com> am b56de747: Revert " modified: MediaFrameworkTest/src/com/android/mediaframeworktest/functional/MediaPlayerApiTest.java"

Merge commit 'b56de7474d93e634f77be58a794fbd1b0e68f6a8' into eclair

* commit 'b56de7474d93e634f77be58a794fbd1b0e68f6a8':
Revert " modified: MediaFrameworkTest/src/com/android/mediaframeworktest/functional/MediaPlayerApiTest.java"
b56de7474d93e634f77be58a794fbd1b0e68f6a8 25-Aug-2009 Yu Shan Emily Lau <yslau@google.com> Revert " modified: MediaFrameworkTest/src/com/android/mediaframeworktest/functional/MediaPlayerApiTest.java"

This reverts commit 051d8d6692a4f8d852f6336d1e31a3a907913ac7.
ediaPlayerApiTest.java
b91c52f77387a95b4ae554b369644e0f41e401ea 24-Aug-2009 Yu Shan Emily Lau <yslau@google.com> am 8c937a17: Merge change 22379 into donut

Merge commit '8c937a17667704ee9ba60663f4c4b76f3c3a0f78' into eclair

* commit '8c937a17667704ee9ba60663f4c4b76f3c3a0f78':
modified: MediaFrameworkTest/src/com/android/mediaframeworktest/functional/MediaPlayerApiTest.java
051d8d6692a4f8d852f6336d1e31a3a907913ac7 22-Aug-2009 Yu Shan Emily Lau <yslau@google.com> modified: MediaFrameworkTest/src/com/android/mediaframeworktest/functional/MediaPlayerApiTest.java
Fixed the passing incorrect media names and add the localH263AMRprepareAsync test.

modified: MediaFrameworkTest/src/com/android/mediaframeworktest/functional/MediaPlayerApiTest.java
ediaPlayerApiTest.java
c9706f0262a2f399f95e0d78ba2b7616e08d0069 14-Aug-2009 Sahil Sachdeva <sahils@google.com> DO NOT MERGE, ALready merged to master.
1440173 [NJ-1331] MetaData utility parse the wrong m4a meta data. Changes to Java, application side.
ediaMetadataTest.java
a553c25b33c99b345cf1c8688f8df0ed8df14e5a 17-Jul-2009 Eric Laurent <elaurent@google.com> Fix issue 1795088 Improve audio routing code

Initial commit for review.
Integrated comments after patch set 1 review.
Fixed lockup in AudioFlinger::ThreadBase::exit()
Fixed lockup when playing tone with AudioPlocyService startTone()
ediaAudioTrackTest.java
8f5fcab05f1d6f644a9c30f012b8ff302f24a118 13-Jul-2009 Nicolas Catania <niko@google.com> New test player stub to load mock native players.

Added a new class TestPlayerStub that takes a magic url in the setDataSource call.
Based on the value of the url, the stub is going to load a DL and create the concrete
player used during the test.
After these initialization steps TestPlayerStub is just a wrapper.

Added a new functional test MediaPlayerInvokeTest to demonstrate how a new
mock player to test the invoke method can be loaded.

Added a new mock player for the invoke test: invoke_mock_media_player.cpp.
ediaPlayerInvokeTest.java
afbc17ead22cf150eba5d5273e1e51c6d11b529f 11-Jun-2009 Yu Shan Emily Lau <yslau@google.com> Turned on the windows media related test cases as the binary already integrated.
ediaPlayerApiTest.java
be467b579e06443bc79ea6a04ba0b4d4746da994 20-May-2009 Yu Shan Emily Lau <yslau@google.com> Replaced the old test media files with the new open source test media files.
Fix the bug in testGetThumbnail test.
odecTest.java
ediaPlayerApiTest.java
55eef638fae461d40b1ad4b1738bdef355a2d482 15-May-2009 Xia Wang <xiaw@google.com> Add a tool to play all kinds of media files saved in /sdcard/media_api/samples/. It also tests the seeking functionality during the play of each sample file.
odecTest.java
ediaPlayerApiTest.java
fe1766474bb1a6f52305bb40bcf887eaa61b48ba 07-May-2009 Xia Wang <xiaw@google.com> Suppress all tests on Windows Media in MediaPlayerApiTest and MediaMetadataTest
(Currently not supported by OpenCore 2.0)
ediaMetadataTest.java
ediaPlayerApiTest.java
f3af740bdfc261b1cb25c0799af780d3753d4518 05-May-2009 Eric Laurent <elaurent@google.com> Fixed issue 1709450: Requirements for CDMA Tone Generator

Added new tone types for CDMA IS-95 specific tones.
Automatic selection between IS-95, CEPT and JAPAN version base on operator
country code for call supervisory tones.
Also improved tone generator capabilities:
- Each tone segment can now generate its own set of frequencies
- A tone does not have to be a succession of alternating ON/OFF segments
- The sequence repetition does not have to start from first segment
onesAutoTest.java
c1b80cb7e30102b304d62beb9649f84c798e00e9 06-May-2009 Yu Shan Emily Lau <yslau@google.com> Changes in mediaframework test for the OpenCore 2.0 integration. Changes included:
1) The default value for the metatData
2) Add the videoSizedChange callback to get the video dimension
Added the test cases for the async reset callback test case for the Qualcomm new realease.
odecTest.java
ediaPlayerApiTest.java
ediaRecorderTest.java
2071043512fc9ceba5d06fe6ea23eeda499c8e02 24-Apr-2009 Yu Shan Emily Lau <yslau@google.com> Modify and turn on the test case for video recording in portrait mode.
ediaRecorderTest.java
655434763fd0fffc5858301040f05d6e81b248b9 03-Apr-2009 Jean-Michel Trivi <> AI 144327: am: CL 144326 Start the thread that initializes the camera for the test under lock to make sure the monitor is notified after it has started waiting.
Original author: jmtrivi
Merged from: //branches/cupcake/...

Automated import of CL 144327
ameraTest.java
1b01f87b395a0c40d204f84ec09a66e3b4e31772 03-Apr-2009 Xia Wang <> AI 144314: am: CL 144313 Add two test cases for AudioTrack.java
getMinBufferSize() returns ERROR_BAD_VALUE if
sampleRateInHz < 4000 or > 48000.
Original author: xiaw
Merged from: //branches/cupcake/...

Automated import of CL 144314
ediaAudioTrackTest.java
105925376f8d0f6b318c9938c7b83ef7fef094da 19-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //branches/cupcake_rel/...@140373
ediaMimeTest.java
ba87e3e6c985e7175152993b5efcc7dd2f0e1c93 13-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //branches/cupcake_rel/...@138607
ediaAudioTrackTest.java
b2a3dd88a53cc8c6d19f6dc8ec4f3d6c4abd9b54 09-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //branches/cupcake/...@137197
odecTest.java
ediaPlayerApiTest.java
4df2423a947bcd3f024cc3d3a1a315a8dc428598 05-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //depot/cupcake/@136594
ameraTest.java
9066cfe9886ac131c34d59ed0e2d287b0e3c0087 04-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //depot/cupcake/@135843
ameraTest.java
odecTest.java
ediaAudioTrackTest.java
ediaMetadataTest.java
ediaPlayerApiTest.java
ediaRecorderTest.java
imTonesTest.java
onesAutoTest.java
d83a98f4ce9cfa908f5c54bbd70f03eec07e7553 04-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //depot/cupcake/@135843
ameraTest.java
odecTest.java
ediaAudioTrackTest.java
ediaMetadataTest.java
ediaPlayerApiTest.java
ediaRecorderTest.java
imTonesTest.java
onesAutoTest.java
076357b8567458d4b6dfdcf839ef751634cd2bfb 03-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //depot/cupcake/@132589
ameraTest.java
ediaAudioTrackTest.java
3dec7d563a2f3e1eb967ce2054a00b6620e3558c 03-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //depot/cupcake/@137055
ameraTest.java
ediaAudioTrackTest.java
15ab3eae2ec3d73b3e8aa60b33ae41445bf83f4b 20-Feb-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //branches/cupcake/...@132569
ediaAudioTrackTest.java
onesAutoTest.java
d24b8183b93e781080b2c16c487e60d51c12da31 11-Feb-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //branches/cupcake/...@130745
ediaAudioTrackTest.java
ediaPlayerApiTest.java
ediaRecorderTest.java
f013e1afd1e68af5e3b868c26a653bbfb39538f8 18-Dec-2008 The Android Open Source Project <initial-contribution@android.com> Code drop from //branches/cupcake/...@124589
ameraTest.java
odecTest.java
ediaMetadataTest.java
ediaPlayerApiTest.java
ediaRecorderTest.java
imTonesTest.java
onesAutoTest.java