aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Quantin <pascal@wireshark.org>2020-01-08 22:54:37 +0100
committerAnders Broman <a.broman58@gmail.com>2020-01-09 07:15:11 +0000
commit23a6fab52ec178af69cbc1d9721bf0124ef7d2bd (patch)
tree0b93d7de376dbe198b9f3e5ecf55e9bce83c74ee
parent10ef28df305624da162e8fd7bec4886d820abfa2 (diff)
Qt: remove codecs from about Wireshark dialog
Codecs were moved to plugins in g63af1da7e7, they are no more embedded in a library. Change-Id: Id5448d2f83b1b4f7b1aac2620390f99da9327167 Reviewed-on: https://code.wireshark.org/review/35701 Reviewed-by: Pascal Quantin <pascal@wireshark.org> Petri-Dish: Pascal Quantin <pascal@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--ui/qt/main.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/ui/qt/main.cpp b/ui/qt/main.cpp
index 9ba20799f3..486a91061c 100644
--- a/ui/qt/main.cpp
+++ b/ui/qt/main.cpp
@@ -240,27 +240,6 @@ get_gui_compiled_info(GString *str)
#else
g_string_append(str, ", with SpeexDSP (using bundled resampler)");
#endif
-
- /* SBC */
-#ifdef HAVE_SBC
- g_string_append(str, ", with SBC");
-#else
- g_string_append(str, ", without SBC");
-#endif
-
- /* SpanDSP (G.722, G.726) */
-#ifdef HAVE_SPANDSP
- g_string_append(str, ", with SpanDSP");
-#else
- g_string_append(str, ", without SpanDSP");
-#endif
-
- /* BCG729 (G.729) */
-#ifdef HAVE_BCG729
- g_string_append(str, ", with bcg729");
-#else
- g_string_append(str, ", without bcg729");
-#endif
}
// xxx copied from ../gtk/main.c