Skip to content

Commit

Permalink
Update MediaUtilities missing from previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrob committed Feb 15, 2022
1 parent f8c8e34 commit 4bdf34e
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ public class MediaUtilities {
String[] tempExtensions = new String[totalLength];
System.arraycopy(M4A_FILE_EXTENSIONS, 0, tempExtensions, 0, M4A_FILE_EXTENSIONS.length);
System.arraycopy(MP3_FILE_EXTENSIONS, 0, tempExtensions, M4A_FILE_EXTENSIONS.length, MP3_FILE_EXTENSIONS.length);
System.arraycopy(WAV_FILE_EXTENSIONS, 0, tempExtensions,
M4A_FILE_EXTENSIONS.length + MP3_FILE_EXTENSIONS.length, WAV_FILE_EXTENSIONS.length);
System.arraycopy(WAV_FILE_EXTENSIONS, 0, tempExtensions, M4A_FILE_EXTENSIONS.length + MP3_FILE_EXTENSIONS.length,
WAV_FILE_EXTENSIONS.length);
MOV_AUDIO_FILE_EXTENSIONS = tempExtensions;
}

Expand Down Expand Up @@ -86,4 +86,5 @@ public class MediaUtilities {
public static final int KEY_IMAGE_QUALITY = 13;
public static final int KEY_AUDIO_RESOURCE_ID = 14;
public static final int KEY_RESAMPLE_AUDIO = 15;
public static final int KEY_RESIZE_VIDEO = 16;
}

0 comments on commit 4bdf34e

Please sign in to comment.