File: null.c

package info (click to toggle)
alsaplayer 0.99.76-0.3sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 5,136 kB
  • ctags: 2,967
  • sloc: ansic: 16,791; cpp: 9,449; sh: 8,431; makefile: 680
file content (86 lines) | stat: -rw-r--r-- 2,111 bytes parent folder | download | duplicates (3)
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
/*  null.c - NULL output plugin, useful, trust me :) 
 *  Copyright (C) 1999 Andy Lo A Foe <andy@alsa-project.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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ 

#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "output_plugin.h"
#include "alsaplayer_error.h"
#include "utilities.h"

static int null_init(void)
{
	alsaplayer_error("NOTE: THIS IS THE NULL PLUGIN."
					"      YOU WILL NOT HEAR SOUND!!");
	return 1;
}

static int null_open(const char *name)
{
	return 1;
}


static void null_close(void)
{
	return;
}


static int null_write(void *data, int count)
{
	dosleep(10000);
	return 1;
}


static int null_set_buffer(int *fragment_size, int *fragment_count, int *channels)
{
	return 1;
}


static unsigned int null_set_sample_rate(unsigned int rate)
{
	return rate;
}

static int null_get_latency(void)
{
	return 4096;
}

output_plugin null_output;

output_plugin *output_plugin_info(void)
{
	memset(&null_output, 0, sizeof(output_plugin));
	null_output.version = OUTPUT_PLUGIN_VERSION;
	null_output.name = "NULL output v1.0";
	null_output.author = "Andy Lo A Foe";
	null_output.init = null_init;
	null_output.open = null_open;
	null_output.close = null_close;
	null_output.write = null_write;
	null_output.set_buffer = null_set_buffer;
	null_output.set_sample_rate = null_set_sample_rate;
	null_output.get_latency = null_get_latency;
	return &null_output;
}