2004-11-17 00:05:25 +00:00
|
|
|
#ifndef foomcalignhfoo
|
|
|
|
|
#define foomcalignhfoo
|
|
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-02-13 15:35:19 +00:00
|
|
|
Copyright 2004-2006 Lennart Poettering
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-17 00:05:25 +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 the
|
|
|
|
|
License, or (at your option) any later version.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2004-11-17 00:05:25 +00:00
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
Lesser General Public License for more details.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-11-17 00:05:25 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2006-06-19 21:53:48 +00:00
|
|
|
License along with PulseAudio; if not, write to the Free Software
|
2004-11-17 00:05:25 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/memblock.h>
|
|
|
|
|
#include <pulsecore/memchunk.h>
|
2004-11-17 00:05:25 +00:00
|
|
|
|
|
|
|
|
/* An alignment object, used for aligning memchunks to multiples of
|
|
|
|
|
* the frame size. */
|
|
|
|
|
|
|
|
|
|
/* Method of operation: the user creates a new mcalign object by
|
|
|
|
|
* calling pa_mcalign_new() with the appropriate aligning
|
|
|
|
|
* granularity. After that he may call pa_mcalign_push() for an input
|
|
|
|
|
* memchunk. After exactly one memchunk the user has to call
|
|
|
|
|
* pa_mcalign_pop() until it returns -1. If pa_mcalign_pop() returns
|
|
|
|
|
* 0, the memchunk *c is valid and aligned to the granularity. Some
|
|
|
|
|
* pseudocode illustrating this:
|
|
|
|
|
*
|
2006-01-11 01:17:39 +00:00
|
|
|
* pa_mcalign *a = pa_mcalign_new(4, NULL);
|
2004-11-17 00:05:25 +00:00
|
|
|
*
|
|
|
|
|
* for (;;) {
|
2006-01-11 01:17:39 +00:00
|
|
|
* pa_memchunk input;
|
2004-11-17 00:05:25 +00:00
|
|
|
*
|
2007-01-04 13:43:45 +00:00
|
|
|
* ... fill input ...
|
2004-11-17 00:05:25 +00:00
|
|
|
*
|
|
|
|
|
* pa_mcalign_push(m, &input);
|
|
|
|
|
* pa_memblock_unref(input.memblock);
|
2007-01-04 13:43:45 +00:00
|
|
|
*
|
2004-11-17 00:05:25 +00:00
|
|
|
* for (;;) {
|
2006-01-11 01:17:39 +00:00
|
|
|
* pa_memchunk output;
|
2004-11-17 00:05:25 +00:00
|
|
|
*
|
|
|
|
|
* if (pa_mcalign_pop(m, &output) < 0)
|
|
|
|
|
* break;
|
|
|
|
|
*
|
|
|
|
|
* ... consume output ...
|
|
|
|
|
*
|
|
|
|
|
* pa_memblock_unref(output.memblock);
|
|
|
|
|
* }
|
|
|
|
|
* }
|
|
|
|
|
*
|
|
|
|
|
* pa_memchunk_free(a);
|
|
|
|
|
* */
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
typedef struct pa_mcalign pa_mcalign;
|
2004-11-17 00:05:25 +00:00
|
|
|
|
2006-08-18 19:55:18 +00:00
|
|
|
pa_mcalign *pa_mcalign_new(size_t base);
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_mcalign_free(pa_mcalign *m);
|
2004-11-17 00:05:25 +00:00
|
|
|
|
|
|
|
|
/* Push a new memchunk into the aligner. The caller of this routine
|
|
|
|
|
* has to free the memchunk by himself. */
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_mcalign_push(pa_mcalign *m, const pa_memchunk *c);
|
2004-11-17 00:05:25 +00:00
|
|
|
|
|
|
|
|
/* Pop a new memchunk from the aligner. Returns 0 when sucessful,
|
|
|
|
|
* nonzero otherwise. */
|
2006-01-11 01:17:39 +00:00
|
|
|
int pa_mcalign_pop(pa_mcalign *m, pa_memchunk *c);
|
2004-11-17 00:05:25 +00:00
|
|
|
|
2006-02-20 04:05:16 +00:00
|
|
|
/* If we pass l bytes in now, how many bytes would we get out? */
|
|
|
|
|
size_t pa_mcalign_csize(pa_mcalign *m, size_t l);
|
|
|
|
|
|
2004-11-17 00:05:25 +00:00
|
|
|
#endif
|