-
Notifications
You must be signed in to change notification settings - Fork 31
/
null.c
86 lines (75 loc) · 2.01 KB
/
null.c
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
/*
* This file is part of dsp.
*
* Copyright (c) 2013-2024 Michael Barbour <[email protected]>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "null.h"
ssize_t null_read(struct codec *c, sample_t *buf, ssize_t frames)
{
memset(buf, 0, frames * c->channels * sizeof(sample_t));
return frames;
}
ssize_t null_write(struct codec *c, sample_t *buf, ssize_t frames)
{
return frames;
}
ssize_t null_seek(struct codec *c, ssize_t pos)
{
return -1;
}
ssize_t null_delay(struct codec *c)
{
return 0;
}
void null_drop(struct codec *c)
{
/* do nothing */
}
void null_pause(struct codec *c, int p)
{
/* do nothing */
}
void null_destroy(struct codec *c)
{
/* nothing to clean up */
}
struct codec * null_codec_init(const struct codec_params *p)
{
struct codec *c = calloc(1, sizeof(struct codec));
c->path = "null";
c->type = p->type;
c->enc = "sample_t";
c->fs = p->fs;
c->channels = p->channels;
c->prec = 53;
c->hints |= CODEC_HINT_NO_OUT_BUF;
c->frames = -1;
if (p->mode == CODEC_MODE_READ) c->read = null_read;
else c->write = null_write;
c->seek = null_seek;
c->delay = null_delay;
c->drop = null_drop;
c->pause = null_pause;
c->destroy = null_destroy;
c->data = NULL;
return c;
}
void null_codec_print_encodings(const char *type)
{
fprintf(stdout, " sample_t");
}