procqueue: Add file related tasks

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
This commit is contained in:
Sylvain Munaut 2010-11-11 20:41:04 +01:00
parent 3c0a4fba8a
commit d9fb0e37c8
3 changed files with 104 additions and 1 deletions

View File

@ -40,4 +40,8 @@ struct pq_item * pq_add_item(struct pq *pq);
int pq_prepare(struct pq *pq);
int pq_execute(struct pq *pq);
/* File */
int pq_queue_file_input(struct pq *pq, FILE *src, unsigned int block_len);
int pq_queue_file_output(struct pq *pq, FILE *dst, unsigned int block_len);
#endif /* __GAPK_PROCQUEUE_H__ */

View File

@ -4,6 +4,6 @@ AM_LDFLAGS=$(LIBOSMOCODEC_LIBS) ${OPENCORE_AMRNB_LIBS} ${LIBGSM_LIBS}
bin_PROGRAMS = gapk
gapk_SOURCES = main.c \
procqueue.c \
procqueue.c pq_file.c \
formats.c fmt_amr.c fmt_gsm.c fmt_hr_ref.c fmt_racal.c \
codecs.c codec_pcm.c codec_hr.c codec_fr.c codec_efr.c

99
src/pq_file.c Normal file
View File

@ -0,0 +1,99 @@
/* Process Queue: File handling tasks */
/*
* This file is part of gapk (GSM Audio Pocket Knife).
*
* gapk 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 3 of the License, or
* (at your option) any later version.
*
* gapk 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 gapk. If not, see <http://www.gnu.org/licenses/>.
*/
#include <errno.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <gapk/codecs.h>
#include <gapk/formats.h>
#include <gapk/procqueue.h>
struct pq_state_file {
FILE *fh;
unsigned int blk_len;
};
static int
pq_cb_file_input(void *_state, uint8_t *out, const uint8_t *in)
{
struct pq_state_file *state = _state;
int rv;
rv = fread(out, state->blk_len, 1, state->fh);
return rv == 1 ? 0 : -1;
}
static int
pq_cb_file_output(void *_state, uint8_t *out, const uint8_t *in)
{
struct pq_state_file *state = _state;
int rv;
rv = fwrite(in, state->blk_len, 1, state->fh);
return rv == 1 ? 0 : -1;
}
static void
pq_cb_file_exit(void *_state)
{
free(_state);
}
static int
pq_queue_file_op(struct pq *pq, FILE *fh, unsigned int blk_len, int in_out_n)
{
struct pq_item *item;
struct pq_state_file *state;
state = calloc(1, sizeof(struct pq_state_file));
if (!state)
return -ENOMEM;
state->fh = fh;
state->blk_len = blk_len;
item = pq_add_item(pq);
if (!item) {
free(state);
return -ENOMEM;
}
item->len_in = in_out_n ? 0 : blk_len;
item->len_out = in_out_n ? blk_len : 0;
item->state = state;
item->proc = in_out_n ? pq_cb_file_input : pq_cb_file_output;
item->exit = pq_cb_file_exit;
return 0;
}
int
pq_queue_file_input(struct pq *pq, FILE *src, unsigned int blk_len)
{
return pq_queue_file_op(pq, src, blk_len, 1);
}
int
pq_queue_file_output(struct pq *pq, FILE *dst, unsigned int blk_len)
{
return pq_queue_file_op(pq, dst, blk_len, 0);
}