reorder ffmpeg to be lower priority than gme

This should prevent ffmpeg from taking priority over the gme plugin.
The ffmpeg plugin is more buggy than gme.
One of the prominent bugs of preferring ffmpeg over gme is that ffmpeg
cannot seek SAP files while gme can. This should prevent that from
happening.
This commit is contained in:
latex 2023-05-12 00:25:08 +02:00
parent 31dc8b73b7
commit 4e9f463bb6
1 changed files with 3 additions and 3 deletions

View File

@ -96,11 +96,11 @@ constinit const struct DecoderPlugin *const decoder_plugins[] = {
#ifdef ENABLE_ADPLUG
&adplug_decoder_plugin,
#endif
#ifdef ENABLE_FFMPEG
&ffmpeg_decoder_plugin,
#endif
#ifdef ENABLE_GME
&gme_decoder_plugin,
#endif
#ifdef ENABLE_FFMPEG
&ffmpeg_decoder_plugin,
#endif
&pcm_decoder_plugin,
nullptr