summaryrefslogtreecommitdiff
path: root/plugins/easy_codec/easy_codec_plugin.c
diff options
context:
space:
mode:
authorTomas Kukosa <tomas.kukosa@siemens.com>2009-02-09 12:54:40 +0000
committerTomas Kukosa <tomas.kukosa@siemens.com>2009-02-09 12:54:40 +0000
commit79e68576f0d06dbec50bde3778e3feffb18b9f76 (patch)
tree316b7938df805a597996d6ff516d7969953fd77c /plugins/easy_codec/easy_codec_plugin.c
parenta10b54dc85d843fb9c9c79a7227446c6620e5b70 (diff)
downloadwireshark-79e68576f0d06dbec50bde3778e3feffb18b9f76.tar.gz
- remove reference to AMR (submitted by mistake)
- add new lines at the ends of headers - fix struct usage svn path=/trunk/; revision=27401
Diffstat (limited to 'plugins/easy_codec/easy_codec_plugin.c')
-rw-r--r--plugins/easy_codec/easy_codec_plugin.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/easy_codec/easy_codec_plugin.c b/plugins/easy_codec/easy_codec_plugin.c
index d8ca1aeffc..6ef0b76b10 100644
--- a/plugins/easy_codec/easy_codec_plugin.c
+++ b/plugins/easy_codec/easy_codec_plugin.c
@@ -34,7 +34,6 @@
#include "codec-g7231.h"
#include "codec-g729a.h"
#include "codec-g722.h"
-#include "codec-amr.h"
G_MODULE_EXPORT const gchar version[] = "0.0.1";
@@ -43,7 +42,6 @@ G_MODULE_EXPORT void register_codec_module(void)
register_codec("g723", codec_g7231_init, codec_g7231_release, codec_g7231_decode);
register_codec("g729", codec_g729a_init, codec_g729a_release, codec_g729a_decode);
register_codec("g722", codec_g722_init, codec_g722_release, codec_g722_decode);
- register_codec("amr", codec_amr_init, codec_amr_release, codec_amr_decode);
}
#endif