2001-03-25 14:13:55 +00:00
|
|
|
/**
|
|
|
|
|
* \file output.c
|
2001-07-18 12:17:11 +00:00
|
|
|
* \brief Generic stdio-like output interface
|
2001-03-25 14:13:55 +00:00
|
|
|
* \author Abramo Bagnara <abramo@alsa-project.org>
|
|
|
|
|
* \date 2000
|
|
|
|
|
*
|
|
|
|
|
* Generic stdio-like output interface
|
|
|
|
|
*/
|
2001-01-17 11:00:32 +00:00
|
|
|
/*
|
|
|
|
|
* Output object
|
|
|
|
|
* Copyright (c) 2000 by Abramo Bagnara <abramo@alsa-project.org>
|
|
|
|
|
*
|
|
|
|
|
*
|
2001-09-18 07:11:59 +00:00
|
|
|
* This library is free software; you can redistribute it and/or modify
|
2001-12-30 09:22:54 +00:00
|
|
|
* it under the terms of the GNU Lesser General Public License as
|
|
|
|
|
* published by the Free Software Foundation; either version 2.1 of
|
2001-09-18 07:11:59 +00:00
|
|
|
* the License, or (at your option) any later version.
|
2001-01-17 11:00:32 +00:00
|
|
|
*
|
|
|
|
|
* 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
|
2001-12-30 09:22:54 +00:00
|
|
|
* GNU Lesser General Public License for more details.
|
2001-01-17 11:00:32 +00:00
|
|
|
*
|
2001-12-30 09:22:54 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2001-09-18 07:11:59 +00:00
|
|
|
* License along with this library; if not, write to the Free Software
|
2017-11-14 14:29:26 +01:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-01-17 11:00:32 +00:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2023-08-30 18:22:59 +02:00
|
|
|
#include "local.h"
|
2001-01-17 11:00:32 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
2001-03-30 10:12:19 +00:00
|
|
|
#ifndef DOC_HIDDEN
|
2001-01-17 11:00:32 +00:00
|
|
|
typedef struct _snd_output_ops {
|
|
|
|
|
int (*close)(snd_output_t *output);
|
2001-05-29 20:17:56 +00:00
|
|
|
int (*print)(snd_output_t *output, const char *format, va_list args);
|
2001-01-17 11:00:32 +00:00
|
|
|
int (*puts)(snd_output_t *output, const char *str);
|
|
|
|
|
int (*putch)(snd_output_t *output, int c);
|
|
|
|
|
int (*flush)(snd_output_t *output);
|
|
|
|
|
} snd_output_ops_t;
|
|
|
|
|
|
|
|
|
|
struct _snd_output {
|
|
|
|
|
snd_output_type_t type;
|
2008-11-21 19:43:33 +01:00
|
|
|
const snd_output_ops_t *ops;
|
2001-02-11 15:45:35 +00:00
|
|
|
void *private_data;
|
2001-01-17 11:00:32 +00:00
|
|
|
};
|
2001-03-25 14:13:55 +00:00
|
|
|
#endif
|
2001-01-17 11:00:32 +00:00
|
|
|
|
2001-03-25 14:13:55 +00:00
|
|
|
/**
|
2002-07-23 19:51:16 +00:00
|
|
|
* \brief Closes an output handle.
|
|
|
|
|
* \param output The output handle to be closed.
|
|
|
|
|
* \return Zero if successful, otherwise a negative error code.
|
2001-03-25 14:13:55 +00:00
|
|
|
*/
|
2001-01-17 11:00:32 +00:00
|
|
|
int snd_output_close(snd_output_t *output)
|
|
|
|
|
{
|
|
|
|
|
int err = output->ops->close(output);
|
|
|
|
|
free(output);
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-25 14:13:55 +00:00
|
|
|
/**
|
2002-07-23 19:51:16 +00:00
|
|
|
* \brief Writes formatted output (like \c fprintf(3)) to an output handle.
|
|
|
|
|
* \param output The output handle.
|
|
|
|
|
* \param format Format string in \c fprintf format.
|
|
|
|
|
* \param ... Other \c fprintf arguments.
|
|
|
|
|
* \return The number of characters written, or a negative error code.
|
2001-03-25 14:13:55 +00:00
|
|
|
*/
|
2001-01-17 11:00:32 +00:00
|
|
|
int snd_output_printf(snd_output_t *output, const char *format, ...)
|
|
|
|
|
{
|
|
|
|
|
int result;
|
|
|
|
|
va_list args;
|
|
|
|
|
va_start(args, format);
|
2001-05-29 20:17:56 +00:00
|
|
|
result = output->ops->print(output, format, args);
|
2001-01-17 11:00:32 +00:00
|
|
|
va_end(args);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2003-06-24 19:30:08 +00:00
|
|
|
/**
|
|
|
|
|
* \brief Writes formatted output (like \c fprintf(3)) to an output handle.
|
|
|
|
|
* \param output The output handle.
|
|
|
|
|
* \param format Format string in \c fprintf format.
|
|
|
|
|
* \param args Other \c fprintf arguments.
|
|
|
|
|
* \return The number of characters written, or a negative error code.
|
|
|
|
|
*/
|
|
|
|
|
int snd_output_vprintf(snd_output_t *output, const char *format, va_list args)
|
|
|
|
|
{
|
|
|
|
|
return output->ops->print(output, format, args);
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-25 14:13:55 +00:00
|
|
|
/**
|
2002-07-23 19:51:16 +00:00
|
|
|
* \brief Writes a string to an output handle (like \c fputs(3)).
|
|
|
|
|
* \param output The output handle.
|
|
|
|
|
* \param str Pointer to the string.
|
|
|
|
|
* \return Zero if successful, otherwise a negative error code or \c EOF.
|
2001-03-25 14:13:55 +00:00
|
|
|
*/
|
2001-01-17 11:00:32 +00:00
|
|
|
int snd_output_puts(snd_output_t *output, const char *str)
|
|
|
|
|
{
|
|
|
|
|
return output->ops->puts(output, str);
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-25 14:13:55 +00:00
|
|
|
/**
|
2002-07-23 19:51:16 +00:00
|
|
|
* \brief Writes a character to an output handle (like \c putc(3)).
|
|
|
|
|
* \param output The output handle.
|
|
|
|
|
* \param c The character.
|
|
|
|
|
* \return Zero if successful, otherwise a negative error code or \c EOF.
|
2001-03-25 14:13:55 +00:00
|
|
|
*/
|
2001-01-17 11:00:32 +00:00
|
|
|
int snd_output_putc(snd_output_t *output, int c)
|
|
|
|
|
{
|
|
|
|
|
return output->ops->putch(output, c);
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-25 14:13:55 +00:00
|
|
|
/**
|
2002-07-23 19:51:16 +00:00
|
|
|
* \brief Flushes an output handle (like fflush(3)).
|
|
|
|
|
* \param output The output handle.
|
|
|
|
|
* \return Zero if successful, otherwise \c EOF.
|
|
|
|
|
*
|
|
|
|
|
* If the underlying destination is a stdio stream, this function calls
|
|
|
|
|
* \c fflush. If the underlying destination is a memory buffer, the write
|
|
|
|
|
* position is reset to the beginning of the buffer. \c =:-o
|
2001-03-25 14:13:55 +00:00
|
|
|
*/
|
2001-01-17 11:00:32 +00:00
|
|
|
int snd_output_flush(snd_output_t *output)
|
|
|
|
|
{
|
|
|
|
|
return output->ops->flush(output);
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-25 14:13:55 +00:00
|
|
|
#ifndef DOC_HIDDEN
|
2001-01-17 11:00:32 +00:00
|
|
|
typedef struct _snd_output_stdio {
|
|
|
|
|
int close;
|
|
|
|
|
FILE *fp;
|
|
|
|
|
} snd_output_stdio_t;
|
|
|
|
|
|
2005-01-11 15:10:03 +00:00
|
|
|
static int snd_output_stdio_close(snd_output_t *output)
|
2001-01-17 11:00:32 +00:00
|
|
|
{
|
2001-02-11 15:45:35 +00:00
|
|
|
snd_output_stdio_t *stdio = output->private_data;
|
2001-04-17 09:55:36 +00:00
|
|
|
if (stdio->close)
|
2001-01-17 11:00:32 +00:00
|
|
|
fclose(stdio->fp);
|
|
|
|
|
free(stdio);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2001-05-29 20:17:56 +00:00
|
|
|
static int snd_output_stdio_print(snd_output_t *output, const char *format, va_list args)
|
2001-01-17 11:00:32 +00:00
|
|
|
{
|
2001-02-11 15:45:35 +00:00
|
|
|
snd_output_stdio_t *stdio = output->private_data;
|
2001-01-17 11:00:32 +00:00
|
|
|
return vfprintf(stdio->fp, format, args);
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-25 14:13:55 +00:00
|
|
|
static int snd_output_stdio_puts(snd_output_t *output, const char *str)
|
2001-01-17 11:00:32 +00:00
|
|
|
{
|
2001-02-11 15:45:35 +00:00
|
|
|
snd_output_stdio_t *stdio = output->private_data;
|
2001-01-17 11:00:32 +00:00
|
|
|
return fputs(str, stdio->fp);
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-25 14:13:55 +00:00
|
|
|
static int snd_output_stdio_putc(snd_output_t *output, int c)
|
2001-01-17 11:00:32 +00:00
|
|
|
{
|
2001-02-11 15:45:35 +00:00
|
|
|
snd_output_stdio_t *stdio = output->private_data;
|
2001-01-17 11:00:32 +00:00
|
|
|
return putc(c, stdio->fp);
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-25 14:13:55 +00:00
|
|
|
static int snd_output_stdio_flush(snd_output_t *output)
|
2001-01-17 11:00:32 +00:00
|
|
|
{
|
2001-02-11 15:45:35 +00:00
|
|
|
snd_output_stdio_t *stdio = output->private_data;
|
2001-01-17 11:00:32 +00:00
|
|
|
return fflush(stdio->fp);
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-21 19:43:33 +01:00
|
|
|
static const snd_output_ops_t snd_output_stdio_ops = {
|
2003-07-25 17:02:00 +00:00
|
|
|
.close = snd_output_stdio_close,
|
|
|
|
|
.print = snd_output_stdio_print,
|
|
|
|
|
.puts = snd_output_stdio_puts,
|
|
|
|
|
.putch = snd_output_stdio_putc,
|
|
|
|
|
.flush = snd_output_stdio_flush,
|
2001-01-17 11:00:32 +00:00
|
|
|
};
|
|
|
|
|
|
2001-03-25 14:13:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/**
|
2002-07-23 19:51:16 +00:00
|
|
|
* \brief Creates a new output object using an existing stdio \c FILE pointer.
|
|
|
|
|
* \param outputp The function puts the pointer to the new output object
|
|
|
|
|
* at the address specified by \p outputp.
|
|
|
|
|
* \param fp The \c FILE pointer to write to. Characters are written
|
|
|
|
|
* to the file starting at the current file position.
|
2005-05-24 14:14:28 +00:00
|
|
|
* \param _close Close flag. Set this to 1 if #snd_output_close should close
|
2002-07-23 19:51:16 +00:00
|
|
|
* \p fp by calling \c fclose.
|
|
|
|
|
* \return Zero if successful, otherwise a negative error code.
|
2001-03-25 14:13:55 +00:00
|
|
|
*/
|
2001-03-29 17:50:28 +00:00
|
|
|
int snd_output_stdio_attach(snd_output_t **outputp, FILE *fp, int _close)
|
2001-01-17 11:00:32 +00:00
|
|
|
{
|
|
|
|
|
snd_output_t *output;
|
|
|
|
|
snd_output_stdio_t *stdio;
|
|
|
|
|
assert(outputp && fp);
|
|
|
|
|
stdio = calloc(1, sizeof(*stdio));
|
|
|
|
|
if (!stdio)
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
output = calloc(1, sizeof(*output));
|
|
|
|
|
if (!output) {
|
|
|
|
|
free(stdio);
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
}
|
|
|
|
|
stdio->fp = fp;
|
2001-03-29 17:50:28 +00:00
|
|
|
stdio->close = _close;
|
2001-01-17 11:00:32 +00:00
|
|
|
output->type = SND_OUTPUT_STDIO;
|
|
|
|
|
output->ops = &snd_output_stdio_ops;
|
2001-02-11 15:45:35 +00:00
|
|
|
output->private_data = stdio;
|
2001-01-17 11:00:32 +00:00
|
|
|
*outputp = output;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-29 09:10:46 +00:00
|
|
|
/**
|
2002-07-23 19:51:16 +00:00
|
|
|
* \brief Creates a new output object writing to a file.
|
|
|
|
|
* \param outputp The function puts the pointer to the new output object
|
|
|
|
|
* at the address specified by \p outputp.
|
|
|
|
|
* \param file The name of the file to open.
|
|
|
|
|
* \param mode The open mode, like \c fopen(3).
|
|
|
|
|
* \return Zero if successful, otherwise a negative error code.
|
2001-03-29 09:10:46 +00:00
|
|
|
*/
|
|
|
|
|
int snd_output_stdio_open(snd_output_t **outputp, const char *file, const char *mode)
|
2001-01-17 11:00:32 +00:00
|
|
|
{
|
|
|
|
|
int err;
|
2001-03-29 09:10:46 +00:00
|
|
|
FILE *fp = fopen(file, mode);
|
2001-01-17 11:00:32 +00:00
|
|
|
if (!fp) {
|
2001-01-17 19:04:56 +00:00
|
|
|
//SYSERR("fopen");
|
2001-01-17 11:00:32 +00:00
|
|
|
return -errno;
|
|
|
|
|
}
|
|
|
|
|
err = snd_output_stdio_attach(outputp, fp, 1);
|
|
|
|
|
if (err < 0)
|
|
|
|
|
fclose(fp);
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-25 14:13:55 +00:00
|
|
|
#ifndef DOC_HIDDEN
|
|
|
|
|
|
2001-01-17 11:00:32 +00:00
|
|
|
typedef struct _snd_output_buffer {
|
|
|
|
|
unsigned char *buf;
|
|
|
|
|
size_t alloc;
|
|
|
|
|
size_t size;
|
|
|
|
|
} snd_output_buffer_t;
|
|
|
|
|
|
2005-04-14 14:21:10 +00:00
|
|
|
static int snd_output_buffer_close(snd_output_t *output)
|
2001-01-17 11:00:32 +00:00
|
|
|
{
|
2001-02-11 15:45:35 +00:00
|
|
|
snd_output_buffer_t *buffer = output->private_data;
|
2001-01-17 11:00:32 +00:00
|
|
|
free(buffer->buf);
|
|
|
|
|
free(buffer);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-25 14:13:55 +00:00
|
|
|
static int snd_output_buffer_need(snd_output_t *output, size_t size)
|
2001-01-17 11:00:32 +00:00
|
|
|
{
|
2001-02-11 15:45:35 +00:00
|
|
|
snd_output_buffer_t *buffer = output->private_data;
|
2001-03-29 17:50:28 +00:00
|
|
|
size_t _free = buffer->alloc - buffer->size;
|
2001-01-17 11:00:32 +00:00
|
|
|
size_t alloc;
|
2004-07-20 15:36:08 +00:00
|
|
|
unsigned char *buf;
|
|
|
|
|
|
2021-04-12 16:47:58 +02:00
|
|
|
/* use 'size++' to allow to add the '\0' string terminator */
|
|
|
|
|
/* without reallocation */
|
|
|
|
|
size++;
|
2001-03-29 17:50:28 +00:00
|
|
|
if (_free >= size)
|
|
|
|
|
return _free;
|
2001-01-17 11:00:32 +00:00
|
|
|
if (buffer->alloc == 0)
|
|
|
|
|
alloc = 256;
|
|
|
|
|
else
|
2004-07-20 15:33:52 +00:00
|
|
|
alloc = buffer->alloc;
|
2004-11-24 16:31:56 +00:00
|
|
|
while (alloc < buffer->size + size)
|
2004-07-20 15:33:52 +00:00
|
|
|
alloc *= 2;
|
2004-07-20 15:36:08 +00:00
|
|
|
buf = realloc(buffer->buf, alloc);
|
|
|
|
|
if (!buf)
|
2001-01-17 11:00:32 +00:00
|
|
|
return -ENOMEM;
|
2004-07-20 15:36:08 +00:00
|
|
|
buffer->buf = buf;
|
2001-01-17 11:00:32 +00:00
|
|
|
buffer->alloc = alloc;
|
|
|
|
|
return buffer->alloc - buffer->size;
|
|
|
|
|
}
|
|
|
|
|
|
2001-05-29 20:17:56 +00:00
|
|
|
static int snd_output_buffer_print(snd_output_t *output, const char *format, va_list args)
|
2001-01-17 11:00:32 +00:00
|
|
|
{
|
2001-02-11 15:45:35 +00:00
|
|
|
snd_output_buffer_t *buffer = output->private_data;
|
2001-01-17 11:00:32 +00:00
|
|
|
size_t size = 256;
|
|
|
|
|
int result;
|
|
|
|
|
result = snd_output_buffer_need(output, size);
|
|
|
|
|
if (result < 0)
|
|
|
|
|
return result;
|
2005-06-28 10:24:44 +00:00
|
|
|
result = vsnprintf((char *)buffer->buf + buffer->size, size, format, args);
|
2001-01-17 11:00:32 +00:00
|
|
|
assert(result >= 0);
|
|
|
|
|
if ((size_t)result <= size) {
|
|
|
|
|
buffer->size += result;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
size = result;
|
|
|
|
|
result = snd_output_buffer_need(output, size);
|
|
|
|
|
if (result < 0)
|
|
|
|
|
return result;
|
2005-06-28 10:24:44 +00:00
|
|
|
result = vsnprintf((char *)buffer->buf + buffer->size, result, format, args);
|
2001-01-17 11:00:32 +00:00
|
|
|
assert(result == (int)size);
|
2004-07-20 15:33:52 +00:00
|
|
|
buffer->size += result;
|
2001-01-17 11:00:32 +00:00
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-25 14:13:55 +00:00
|
|
|
static int snd_output_buffer_puts(snd_output_t *output, const char *str)
|
2001-01-17 11:00:32 +00:00
|
|
|
{
|
2001-02-11 15:45:35 +00:00
|
|
|
snd_output_buffer_t *buffer = output->private_data;
|
2001-01-17 11:00:32 +00:00
|
|
|
size_t size = strlen(str);
|
|
|
|
|
int err;
|
|
|
|
|
err = snd_output_buffer_need(output, size);
|
|
|
|
|
if (err < 0)
|
|
|
|
|
return err;
|
|
|
|
|
memcpy(buffer->buf + buffer->size, str, size);
|
|
|
|
|
buffer->size += size;
|
|
|
|
|
return size;
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-25 14:13:55 +00:00
|
|
|
static int snd_output_buffer_putc(snd_output_t *output, int c)
|
2001-01-17 11:00:32 +00:00
|
|
|
{
|
2001-02-11 15:45:35 +00:00
|
|
|
snd_output_buffer_t *buffer = output->private_data;
|
2001-01-17 11:00:32 +00:00
|
|
|
int err;
|
|
|
|
|
err = snd_output_buffer_need(output, 1);
|
|
|
|
|
if (err < 0)
|
|
|
|
|
return err;
|
|
|
|
|
buffer->buf[buffer->size++] = c;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-25 14:13:55 +00:00
|
|
|
static int snd_output_buffer_flush(snd_output_t *output ATTRIBUTE_UNUSED)
|
2001-01-17 11:00:32 +00:00
|
|
|
{
|
2001-02-11 15:45:35 +00:00
|
|
|
snd_output_buffer_t *buffer = output->private_data;
|
2001-01-17 11:00:32 +00:00
|
|
|
buffer->size = 0;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-21 19:43:33 +01:00
|
|
|
static const snd_output_ops_t snd_output_buffer_ops = {
|
2003-07-25 17:02:00 +00:00
|
|
|
.close = snd_output_buffer_close,
|
|
|
|
|
.print = snd_output_buffer_print,
|
|
|
|
|
.puts = snd_output_buffer_puts,
|
|
|
|
|
.putch = snd_output_buffer_putc,
|
|
|
|
|
.flush = snd_output_buffer_flush,
|
2001-01-17 11:00:32 +00:00
|
|
|
};
|
2001-03-25 14:13:55 +00:00
|
|
|
#endif
|
2001-01-17 11:00:32 +00:00
|
|
|
|
2001-03-25 14:13:55 +00:00
|
|
|
/**
|
2009-08-04 09:17:20 +02:00
|
|
|
* \brief Returns the address of the buffer of a #SND_OUTPUT_BUFFER output handle.
|
2002-07-23 19:51:16 +00:00
|
|
|
* \param output The output handle.
|
|
|
|
|
* \param buf The functions puts the current address of the buffer at the
|
|
|
|
|
* address specified by \p buf.
|
|
|
|
|
* \return The current size of valid data in the buffer.
|
|
|
|
|
*
|
|
|
|
|
* The address of the buffer may become invalid when output functions or
|
|
|
|
|
* #snd_output_close are called.
|
2001-03-25 14:13:55 +00:00
|
|
|
*/
|
|
|
|
|
size_t snd_output_buffer_string(snd_output_t *output, char **buf)
|
|
|
|
|
{
|
|
|
|
|
snd_output_buffer_t *buffer = output->private_data;
|
2005-06-28 10:24:44 +00:00
|
|
|
*buf = (char *)buffer->buf;
|
2001-03-25 14:13:55 +00:00
|
|
|
return buffer->size;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-12 16:47:58 +02:00
|
|
|
/**
|
|
|
|
|
* \brief Returns the address of the buffer of a #SND_OUTPUT_BUFFER output handle.
|
|
|
|
|
* \param output The output handle.
|
|
|
|
|
* \param buf The functions puts the current address of the buffer at the
|
|
|
|
|
* address specified by \p buf.
|
|
|
|
|
* \return The current size of valid data in the buffer.
|
|
|
|
|
*
|
|
|
|
|
* The internal buffer is empty after this call. The caller has the responsibility
|
|
|
|
|
* to clean the buffer using the free() call.
|
|
|
|
|
*/
|
|
|
|
|
size_t snd_output_buffer_steal(snd_output_t *output, char **buf)
|
|
|
|
|
{
|
|
|
|
|
snd_output_buffer_t *buffer = output->private_data;
|
|
|
|
|
size_t size;
|
|
|
|
|
*buf = (char *)buffer->buf;
|
|
|
|
|
size = buffer->size;
|
|
|
|
|
buffer->buf = NULL;
|
|
|
|
|
buffer->alloc = 0;
|
|
|
|
|
buffer->size = 0;
|
|
|
|
|
return size;
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-25 14:13:55 +00:00
|
|
|
/**
|
2002-07-23 19:51:16 +00:00
|
|
|
* \brief Creates a new output object with an auto-extending memory buffer.
|
|
|
|
|
* \param outputp The function puts the pointer to the new output object
|
|
|
|
|
* at the address specified by \p outputp.
|
|
|
|
|
* \return Zero if successful, otherwise a negative error code.
|
2001-03-25 14:13:55 +00:00
|
|
|
*/
|
2001-01-17 11:00:32 +00:00
|
|
|
int snd_output_buffer_open(snd_output_t **outputp)
|
|
|
|
|
{
|
|
|
|
|
snd_output_t *output;
|
|
|
|
|
snd_output_buffer_t *buffer;
|
|
|
|
|
assert(outputp);
|
|
|
|
|
buffer = calloc(1, sizeof(*buffer));
|
|
|
|
|
if (!buffer)
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
output = calloc(1, sizeof(*output));
|
|
|
|
|
if (!output) {
|
|
|
|
|
free(buffer);
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
}
|
|
|
|
|
buffer->buf = NULL;
|
|
|
|
|
buffer->alloc = 0;
|
|
|
|
|
buffer->size = 0;
|
|
|
|
|
output->type = SND_OUTPUT_BUFFER;
|
|
|
|
|
output->ops = &snd_output_buffer_ops;
|
2001-02-11 15:45:35 +00:00
|
|
|
output->private_data = buffer;
|
2001-01-17 11:00:32 +00:00
|
|
|
*outputp = output;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|