Change the video file in MediaStore_Video_ThumbnailsTest.

The original video file format was not supported by the software H263
decoder. The new video is H264 with profile and level that are supported
by the software decoder and are sufficiently stringent according to the
requirements in the compatibility definition document.

Bug: 30232471
Change-Id: Ieb74fe85f999b73d8d1051dceb2bd54cb4ab851d
diff --git a/tests/tests/provider/res/raw/testthumbvideo.mp4 b/tests/tests/provider/res/raw/testthumbvideo.mp4
new file mode 100644
index 0000000..6599e1f
--- /dev/null
+++ b/tests/tests/provider/res/raw/testthumbvideo.mp4
Binary files differ
diff --git a/tests/tests/provider/src/android/provider/cts/MediaStore_Video_ThumbnailsTest.java b/tests/tests/provider/src/android/provider/cts/MediaStore_Video_ThumbnailsTest.java
index 9c41274..8e51cb8 100644
--- a/tests/tests/provider/src/android/provider/cts/MediaStore_Video_ThumbnailsTest.java
+++ b/tests/tests/provider/src/android/provider/cts/MediaStore_Video_ThumbnailsTest.java
@@ -45,7 +45,8 @@
     private FileCopyHelper mFileHelper;
 
     private boolean hasCodec() {
-        return MediaUtils.hasCodecForResourceAndDomain(mContext, R.raw.testvideo, "video/");
+        return MediaUtils.hasCodecForResourceAndDomain(
+                mContext, R.raw.testthumbvideo, "video/");
     }
 
     @Override
@@ -127,7 +128,7 @@
         mResolver.delete(Media.EXTERNAL_CONTENT_URI,
                 "_data=?", new String[] { file.getAbsolutePath() });
         file.delete();
-        mFileHelper.copyToExternalStorage(R.raw.testvideo, file);
+        mFileHelper.copyToExternalStorage(R.raw.testthumbvideo, file);
 
         ContentValues values = new ContentValues();
         values.put(VideoColumns.DATA, file.getAbsolutePath());