freeimage: Add new elements encoder elements fienc_*

This commit is contained in:
Joshua M. Doe
2010-06-18 15:28:34 -04:00
parent 992d159add
commit 4933f07ad5
3 changed files with 487 additions and 0 deletions

View File

@@ -24,18 +24,24 @@
#include <gst/gst.h>
#include "gstfreeimagedec.h"
#include "gstfreeimageenc.h"
GST_DEBUG_CATEGORY (freeimagedec_debug);
GST_DEBUG_CATEGORY (freeimageenc_debug);
static gboolean
plugin_init (GstPlugin * plugin)
{
GST_DEBUG_CATEGORY_INIT (freeimagedec_debug, "freeimagedec", 0, "FreeImage image decoder");
GST_DEBUG_CATEGORY_INIT (freeimageenc_debug, "freeimageenc", 0, "FreeImage image encoder");
if (!gst_freeimagedec_register_plugins (plugin))
return FALSE;
if (!gst_freeimageenc_register_plugins (plugin))
return FALSE;
return TRUE;
}