1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
|
/* GStreamer bz2 encoder
* Copyright (C) 2006 Lutz Müller <lutz topfrose de>
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "gstbz2enc.h"
#include <bzlib.h>
#include <string.h>
GST_DEBUG_CATEGORY_STATIC (bz2enc_debug);
#define GST_CAT_DEFAULT bz2enc_debug
static GstStaticPadTemplate sink_template =
GST_STATIC_PAD_TEMPLATE ("sink", GST_PAD_SINK, GST_PAD_ALWAYS,
GST_STATIC_CAPS ("ANY"));
static GstStaticPadTemplate src_template =
GST_STATIC_PAD_TEMPLATE ("src", GST_PAD_SRC, GST_PAD_ALWAYS,
GST_STATIC_CAPS ("application/x-bzip"));
#define DEFAULT_BLOCK_SIZE 6
#define DEFAULT_BUFFER_SIZE 1024
enum
{
PROP_0,
PROP_BLOCK_SIZE,
PROP_BUFFER_SIZE
};
struct _GstBz2enc
{
GstElement parent;
GstPad *sink;
GstPad *src;
/* Properties */
guint block_size;
guint buffer_size;
gboolean ready;
bz_stream stream;
guint64 offset;
};
struct _GstBz2encClass
{
GstElementClass parent_class;
};
#define gst_bz2enc_parent_class parent_class
G_DEFINE_TYPE (GstBz2enc, gst_bz2enc, GST_TYPE_ELEMENT);
GST_ELEMENT_REGISTER_DEFINE (bz2enc, "bz2enc", GST_RANK_NONE, GST_TYPE_BZ2ENC);
static void
gst_bz2enc_compress_end (GstBz2enc * b)
{
g_return_if_fail (GST_IS_BZ2ENC (b));
if (b->ready) {
BZ2_bzCompressEnd (&b->stream);
memset (&b->stream, 0, sizeof (b->stream));
b->ready = FALSE;
}
}
static void
gst_bz2enc_compress_init (GstBz2enc * b)
{
g_return_if_fail (GST_IS_BZ2ENC (b));
gst_bz2enc_compress_end (b);
b->offset = 0;
switch (BZ2_bzCompressInit (&b->stream, b->block_size, 0, 0)) {
case BZ_OK:
b->ready = TRUE;
return;
default:
b->ready = FALSE;
GST_ELEMENT_ERROR (b, CORE, FAILED, (NULL),
("Failed to start compression."));
return;
}
}
static gboolean
gst_bz2enc_event (GstPad * pad, GstObject * parent, GstEvent * e)
{
GstBz2enc *b;
gboolean ret;
b = GST_BZ2ENC (parent);
switch (GST_EVENT_TYPE (e)) {
case GST_EVENT_EOS:{
GstFlowReturn flow = GST_FLOW_OK;
int r = BZ_FINISH_OK;
do {
GstBuffer *out;
GstMapInfo omap;
guint n;
out = gst_buffer_new_and_alloc (b->buffer_size);
gst_buffer_map (out, &omap, GST_MAP_WRITE);
b->stream.next_out = (char *) omap.data;
b->stream.avail_out = omap.size;
r = BZ2_bzCompress (&b->stream, BZ_FINISH);
gst_buffer_unmap (out, &omap);
if ((r != BZ_FINISH_OK) && (r != BZ_STREAM_END)) {
GST_ELEMENT_ERROR (b, STREAM, ENCODE, (NULL),
("Failed to finish to compress (error code %i).", r));
gst_buffer_unref (out);
break;
}
n = gst_buffer_get_size (out);
if (b->stream.avail_out >= n) {
gst_buffer_unref (out);
break;
}
gst_buffer_resize (out, 0, n - b->stream.avail_out);
n = gst_buffer_get_size (out);
GST_BUFFER_OFFSET (out) = b->stream.total_out_lo32 - n;
flow = gst_pad_push (b->src, out);
if (flow != GST_FLOW_OK) {
GST_DEBUG_OBJECT (b, "push on EOS failed: %s",
gst_flow_get_name (flow));
break;
}
} while (r != BZ_STREAM_END);
ret = gst_pad_event_default (pad, parent, e);
if (r != BZ_STREAM_END || flow != GST_FLOW_OK)
ret = FALSE;
gst_bz2enc_compress_init (b);
break;
}
default:
ret = gst_pad_event_default (pad, parent, e);
break;
}
return ret;
}
static GstFlowReturn
gst_bz2enc_chain (GstPad * pad, GstObject * parent, GstBuffer * in)
{
GstFlowReturn flow = GST_FLOW_OK;
GstBuffer *out;
GstBz2enc *b;
guint n;
int bz2_ret;
GstMapInfo map = GST_MAP_INFO_INIT, omap;
b = GST_BZ2ENC (parent);
if (!b->ready)
goto not_ready;
gst_buffer_map (in, &map, GST_MAP_READ);
b->stream.next_in = (char *) map.data;
b->stream.avail_in = map.size;
while (b->stream.avail_in) {
out = gst_buffer_new_and_alloc (b->buffer_size);
gst_buffer_map (out, &omap, GST_MAP_WRITE);
b->stream.next_out = (char *) omap.data;
b->stream.avail_out = omap.size;
bz2_ret = BZ2_bzCompress (&b->stream, BZ_RUN);
gst_buffer_unmap (out, &omap);
if (bz2_ret != BZ_RUN_OK)
goto compress_error;
n = gst_buffer_get_size (out);
if (b->stream.avail_out >= n) {
gst_buffer_unref (out);
break;
}
gst_buffer_resize (out, 0, n - b->stream.avail_out);
n = gst_buffer_get_size (out);
GST_BUFFER_OFFSET (out) = b->stream.total_out_lo32 - n;
flow = gst_pad_push (b->src, out);
if (flow != GST_FLOW_OK)
break;
b->offset += n;
}
done:
gst_buffer_unmap (in, &map);
gst_buffer_unref (in);
return flow;
/* ERRORS */
not_ready:
{
GST_ELEMENT_ERROR (b, LIBRARY, FAILED, (NULL), ("Compressor not ready."));
flow = GST_FLOW_FLUSHING;
goto done;
}
compress_error:
{
GST_ELEMENT_ERROR (b, STREAM, ENCODE, (NULL),
("Failed to compress data (error code %i)", bz2_ret));
gst_bz2enc_compress_init (b);
gst_buffer_unref (out);
flow = GST_FLOW_ERROR;
goto done;
}
}
static void
gst_bz2enc_init (GstBz2enc * b)
{
b->sink = gst_pad_new_from_static_template (&sink_template, "sink");
gst_pad_set_chain_function (b->sink, GST_DEBUG_FUNCPTR (gst_bz2enc_chain));
gst_pad_set_event_function (b->sink, GST_DEBUG_FUNCPTR (gst_bz2enc_event));
gst_element_add_pad (GST_ELEMENT (b), b->sink);
b->src = gst_pad_new_from_static_template (&src_template, "src");
gst_pad_set_caps (b->src, gst_static_pad_template_get_caps (&src_template));
gst_pad_use_fixed_caps (b->src);
gst_element_add_pad (GST_ELEMENT (b), b->src);
b->block_size = DEFAULT_BLOCK_SIZE;
b->buffer_size = DEFAULT_BUFFER_SIZE;
gst_bz2enc_compress_init (b);
}
static void
gst_bz2enc_finalize (GObject * object)
{
GstBz2enc *b = GST_BZ2ENC (object);
gst_bz2enc_compress_end (b);
G_OBJECT_CLASS (parent_class)->finalize (object);
}
static void
gst_bz2enc_get_property (GObject * object, guint prop_id,
GValue * value, GParamSpec * pspec)
{
GstBz2enc *b = GST_BZ2ENC (object);
switch (prop_id) {
case PROP_BLOCK_SIZE:
g_value_set_uint (value, b->block_size);
break;
case PROP_BUFFER_SIZE:
g_value_set_uint (value, b->buffer_size);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
}
}
static void
gst_bz2enc_set_property (GObject * object, guint prop_id,
const GValue * value, GParamSpec * pspec)
{
GstBz2enc *b = GST_BZ2ENC (object);
switch (prop_id) {
case PROP_BLOCK_SIZE:
b->block_size = g_value_get_uint (value);
gst_bz2enc_compress_init (b);
break;
case PROP_BUFFER_SIZE:
b->buffer_size = g_value_get_uint (value);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
}
}
static void
gst_bz2enc_class_init (GstBz2encClass * klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
gobject_class->finalize = gst_bz2enc_finalize;
gobject_class->set_property = gst_bz2enc_set_property;
gobject_class->get_property = gst_bz2enc_get_property;
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_BLOCK_SIZE,
g_param_spec_uint ("block-size", "Block size", "Block size",
1, 9, DEFAULT_BLOCK_SIZE,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_BUFFER_SIZE,
g_param_spec_uint ("buffer-size", "Buffer size", "Buffer size",
1, G_MAXUINT, DEFAULT_BUFFER_SIZE,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
gst_element_class_add_static_pad_template (gstelement_class, &sink_template);
gst_element_class_add_static_pad_template (gstelement_class, &src_template);
gst_element_class_set_static_metadata (gstelement_class, "BZ2 encoder",
"Codec/Encoder", "Compresses streams",
"Lutz Mueller <lutz@users.sourceforge.net>");
GST_DEBUG_CATEGORY_INIT (bz2enc_debug, "bz2enc", 0, "BZ2 compressor");
}
|