Skip to content

Commit

Permalink
Remove more LibVLC and ffmpeg related code
Browse files Browse the repository at this point in the history
  • Loading branch information
AnsisMalins committed Oct 25, 2024
1 parent 983cb84 commit 7fdb234
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 425 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public void ShouldListSupportedAudioFormats()
"wav",
"wma",
};
List<string> supportedFormats = ApplicationUtils.ffmpegSupportedAudioFiles.ToList();
List<string> supportedFormats = ApplicationUtils.unitySupportedAudioFiles.ToList();
foreach (string expectedAudioFormat in expectedAudioFormats)
{
Assert.Contains(expectedAudioFormat, supportedFormats);
Expand All @@ -40,7 +40,7 @@ public void ShouldListSupportedVideoFormats()
"webm",
"wmv",
};
List<string> supportedFormats = ApplicationUtils.ffmpegSupportedVideoFiles.ToList();
List<string> supportedFormats = ApplicationUtils.unitySupportedVideoFiles.ToList();
foreach (string expectedVideoFormat in expectedVideoFormats)
{
Assert.Contains(expectedVideoFormat, supportedFormats);
Expand Down
2 changes: 0 additions & 2 deletions UltraStar Play/Assets/Scenes/Loading/LoadingSceneControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,6 @@ private void Start()

MidiManager.Instance.InitIfNotDoneYet();

Debug.Log("Supported file extensions by ffmpeg: " + ApplicationUtils.ffmpegSupportedFileExtensions.JoinWith(", "));

// Continue to next scene when preloading data has finished.
long maxWaitTimeInMillis = 1200;
long startTimeInMillis = TimeUtils.GetUnixTimeMilliseconds();
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit 7fdb234

Please sign in to comment.