2009-10-24 19:01:15 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003-2009 The Music Player Daemon Project
|
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2009-10-24 19:01:15 +02:00
|
|
|
#include "encoder_api.h"
|
|
|
|
#include "encoder_plugin.h"
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#define MAX_BUFFER 32768
|
|
|
|
|
2009-10-26 20:02:34 +01:00
|
|
|
struct null_encoder {
|
2009-10-24 19:01:15 +02:00
|
|
|
struct encoder encoder;
|
|
|
|
|
|
|
|
unsigned char buffer[MAX_BUFFER];
|
|
|
|
size_t buffer_length;
|
|
|
|
};
|
|
|
|
|
2009-10-26 20:02:34 +01:00
|
|
|
extern const struct encoder_plugin null_encoder_plugin;
|
2009-10-24 19:01:15 +02:00
|
|
|
|
|
|
|
static inline GQuark
|
2009-10-26 20:02:34 +01:00
|
|
|
null_encoder_quark(void)
|
2009-10-24 19:01:15 +02:00
|
|
|
{
|
2009-10-26 20:02:34 +01:00
|
|
|
return g_quark_from_static_string("null_encoder");
|
2009-10-24 19:01:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct encoder *
|
2009-10-26 20:02:34 +01:00
|
|
|
null_encoder_init(G_GNUC_UNUSED const struct config_param *param,
|
2009-10-24 19:01:15 +02:00
|
|
|
G_GNUC_UNUSED GError **error)
|
|
|
|
{
|
2009-10-26 20:02:34 +01:00
|
|
|
struct null_encoder *encoder;
|
2009-10-24 19:01:15 +02:00
|
|
|
|
2009-10-26 20:02:34 +01:00
|
|
|
encoder = g_new(struct null_encoder, 1);
|
|
|
|
encoder_struct_init(&encoder->encoder, &null_encoder_plugin);
|
2009-10-24 19:01:15 +02:00
|
|
|
|
|
|
|
return &encoder->encoder;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-10-26 20:02:34 +01:00
|
|
|
null_encoder_finish(struct encoder *_encoder)
|
2009-10-24 19:01:15 +02:00
|
|
|
{
|
2009-10-26 20:02:34 +01:00
|
|
|
struct null_encoder *encoder = (struct null_encoder *)_encoder;
|
2009-10-24 19:01:15 +02:00
|
|
|
|
|
|
|
g_free(encoder);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2009-11-08 21:43:19 +01:00
|
|
|
null_encoder_open(struct encoder *_encoder,
|
|
|
|
G_GNUC_UNUSED struct audio_format *audio_format,
|
2009-10-24 19:01:15 +02:00
|
|
|
G_GNUC_UNUSED GError **error)
|
|
|
|
{
|
2009-10-26 20:02:34 +01:00
|
|
|
struct null_encoder *encoder = (struct null_encoder *)_encoder;
|
2009-10-24 19:01:15 +02:00
|
|
|
|
|
|
|
encoder->buffer_length = 0;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2009-10-26 20:02:34 +01:00
|
|
|
null_encoder_write(struct encoder *_encoder,
|
2009-10-24 19:01:15 +02:00
|
|
|
const void *data, size_t length,
|
|
|
|
G_GNUC_UNUSED GError **error)
|
|
|
|
{
|
2009-10-26 20:02:34 +01:00
|
|
|
struct null_encoder *encoder = (struct null_encoder *)_encoder;
|
2009-10-24 19:01:15 +02:00
|
|
|
|
|
|
|
assert(length + encoder->buffer_length < MAX_BUFFER);
|
|
|
|
|
|
|
|
memcpy(encoder->buffer+encoder->buffer_length,
|
|
|
|
data, length);
|
|
|
|
|
|
|
|
encoder->buffer_length += length;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t
|
2009-10-26 20:02:34 +01:00
|
|
|
null_encoder_read(struct encoder *_encoder, void *dest, size_t length)
|
2009-10-24 19:01:15 +02:00
|
|
|
{
|
2009-10-26 20:02:34 +01:00
|
|
|
struct null_encoder *encoder = (struct null_encoder *)_encoder;
|
2009-10-24 19:01:15 +02:00
|
|
|
|
|
|
|
if (length > encoder->buffer_length)
|
|
|
|
length = encoder->buffer_length;
|
|
|
|
|
|
|
|
memcpy(dest, encoder->buffer, length);
|
|
|
|
|
|
|
|
encoder->buffer_length -= length;
|
|
|
|
memmove(encoder->buffer, encoder->buffer + length,
|
|
|
|
encoder->buffer_length);
|
|
|
|
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
2009-10-26 20:02:34 +01:00
|
|
|
const struct encoder_plugin null_encoder_plugin = {
|
|
|
|
.name = "null",
|
|
|
|
.init = null_encoder_init,
|
|
|
|
.finish = null_encoder_finish,
|
|
|
|
.open = null_encoder_open,
|
|
|
|
.write = null_encoder_write,
|
|
|
|
.read = null_encoder_read,
|
2009-10-24 19:01:15 +02:00
|
|
|
};
|