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

Commit adf4b4f5 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change I96458368 into eclair

* changes:
  Fixed the H263 video duation which caused the incorrect video validation.
parents e8543418 13b93713
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -503,4 +503,5 @@ public class MediaNames {
      "http://75.17.48.204:10088/yslau/stress_media/mpeg4_qvga_24fps.3gp";
  public static final int STREAM_H264_480_360_1411k_DURATION = 46000;
  public static final int VIDEO_H263_AAC_DURATION = 501000;
  public static final int VIDEO_H263_AMR_DURATION = 502000;
}
+1 −1
Original line number Diff line number Diff line
@@ -94,7 +94,7 @@ public class MediaPlayerStressTest extends ActivityInstrumentationTestCase2<Medi
        long randomseed = System.currentTimeMillis(); 
        Random generator = new Random(randomseed);
        Log.v(TAG, "Random seed: " + randomseed);
        int video_duration = MediaNames.VIDEO_H263_AAC_DURATION;
        int video_duration = MediaNames.VIDEO_H263_AMR_DURATION;
        int random_play_time = 0;
        int random_seek_time = 0;
        int random_no_of_seek = 0;