aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/plugins/Input/ffmpeg/settingsdialog.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/plugins/Input/ffmpeg/settingsdialog.cpp b/src/plugins/Input/ffmpeg/settingsdialog.cpp
index d8b4c7d05..f9d439438 100644
--- a/src/plugins/Input/ffmpeg/settingsdialog.cpp
+++ b/src/plugins/Input/ffmpeg/settingsdialog.cpp
@@ -41,6 +41,29 @@ extern "C"
#else
#include <avcodec.h>
#endif
+
+// FIXME: Check for available codecs...
+#if ! defined CODEC_ID_WMAV1
+#define CODEC_ID_WMAV1 CODEC_ID_NONE
+#endif
+#if ! defined CODEC_ID_APE
+#define CODEC_ID_APE CODEC_ID_NONE
+#endif
+#if ! defined CODEC_ID_TTA
+#define CODEC_ID_TTA CODEC_ID_NONE
+#endif
+#if ! defined CODEC_ID_ALAC
+#define CODEC_ID_ALAC CODEC_ID_NONE
+#endif
+#if ! defined CODEC_ID_AAC
+#define CODEC_ID_AAC CODEC_ID_NONE
+#endif
+#if ! defined CODEC_ID_MP3
+#define CODEC_ID_MP3 CODEC_ID_NONE
+#endif
+#if ! defined CODEC_ID_RA_288
+#define CODEC_ID_RA_288 CODEC_ID_NONE
+#endif
}
#include "settingsdialog.h"