# sources used to compile this plug-in
libgstkate_la_SOURCES = gstkate.c gstkatedec.c gstkateenc.c gstkateparse.c gstkatetag.c gstkateutil.c gstkatespu.c
-if USE_TIGER
-libgstkate_la_SOURCES += gstkatetiger.c
-endif
+#if USE_TIGER
+#libgstkate_la_SOURCES += gstkatetiger.c
+#endif
# flags used to compile this plugin
libgstkate_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(TIGER_CFLAGS) $(KATE_CFLAGS)
#include "gstkateenc.h"
#include "gstkateparse.h"
#include "gstkatetag.h"
+
+#undef HAVE_TIGER
#ifdef HAVE_TIGER
#include "gstkatetiger.h"
#endif
}
}
#endif
- GST_DEBUG_OBJECT (ke, "Encoding %ux%u SPU: (%u bytes) from %f to %f",
- (guint) kbitmap->width, (guint) kbitmap->height,
- gst_buffer_get_size (buf), t0, t1);
+ GST_DEBUG_OBJECT (ke, "Encoding %zux%zu SPU: (%zu bytes) from %f to %f",
+ kbitmap->width, kbitmap->height, gst_buffer_get_size (buf), t0, t1);
ret = kate_encode_set_region (&ke->k, kregion);
if (G_UNLIKELY (ret < 0)) {
GstCaps *caps;
const gchar *mime_type = NULL;
- GST_DEBUG_OBJECT (ke, "got packet, %u bytes", gst_buffer_get_size (buf));
+ GST_DEBUG_OBJECT (ke, "got packet, %zu bytes", gst_buffer_get_size (buf));
/* get the type of the data we're being sent */
caps = gst_pad_get_current_caps (pad);
size = gst_buffer_extract (buf, 0, header, 1);
- GST_LOG_OBJECT (parse, "Got packet %02x, %u bytes",
+ GST_LOG_OBJECT (parse, "Got packet %02x, %zu bytes",
size ? header[0] : -1, gst_buffer_get_size (buf));
if (size > 0 && header[0] & 0x80) {
guint16 sz;
if (!gst_buffer_map (buf, &info, GST_MAP_READ)) {
- GST_ERROR_OBJECT (ke, (NULL), ("Failed to map buffer"));
+ GST_ERROR_OBJECT (ke, "Failed to map buffer");
return GST_FLOW_ERROR;
}
{
gst_buffer_unmap (buf, &info);
GST_ELEMENT_ERROR (ke, STREAM, DECODE, (NULL),
- ("Command sequence offset %u is out of range %u",
+ ("Command sequence offset %u is out of range %zu",
command_sequence_offset, info.size));
return GST_FLOW_ERROR;
}
guint16 code;
if (!gst_buffer_map (buf, &info, GST_MAP_READ)) {
- GST_ERROR_OBJECT (ke, (NULL), ("Failed to map buffer"));
+ GST_ERROR_OBJECT (ke, "Failed to map buffer");
}
ptr = info.data;
CHECK (2);
packet_size = GST_KATE_UINT16_BE (ptr);
ADVANCE (2);
- GST_DEBUG_OBJECT (ke, "packet size %u (GstBuffer size %u)", packet_size,
+ GST_DEBUG_OBJECT (ke, "packet size %d (GstBuffer size %zu)", packet_size,
info.size);
CHECK (2);
kt = GST_KATE_TAG (parse);
if (!gst_buffer_map (buffer, &info, GST_MAP_READ)) {
- GST_ERROR_OBJECT (buffer, (NULL), ("Failed to map buffer"));
+ GST_ERROR_OBJECT (parse, "Failed to map buffer");
return GST_FLOW_ERROR;
}
buffer = new_buffer;
if (!gst_buffer_map (buffer, &info, GST_MAP_READWRITE)) {
- GST_ERROR_OBJECT (buffer, (NULL),
- ("Failed to map copied buffer READWRITE"));
+ GST_ERROR_OBJECT (parse, "Failed to map copied buffer READWRITE");
return GST_FLOW_ERROR;
}
/* language is at offset 32, 16 bytes, zero terminated */
header_size = gst_buffer_extract (buf, 0, header, 1);
- GST_DEBUG_OBJECT (element, "got kate packet, %u bytes, type %02x",
+ GST_DEBUG_OBJECT (element, "got kate packet, %zu bytes, type %02x",
gst_buffer_get_size (buf), header_size == 0 ? -1 : header[0]);
is_header = header_size > 0 && (header[0] & 0x80);