summaryrefslogtreecommitdiffstats
path: root/bltsville/bltsville/include/bvfilter.h
blob: 2c98d9497273c4c98cae3439a7fb787571befe06 (plain)
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
/*
 * bvfilter.h
 *
 * Copyright (C) 2011 Texas Instruments, Inc.
 *
 * This file is part of BLTsville, an open application programming interface
 * (API) for accessing 2-D software or hardware implementations.
 *
 * This work is licensed under the Creative Commons Attribution-NoDerivs 3.0
 * Unported License. To view a copy of this license, visit
 * http://creativecommons.org/licenses/by-nd/3.0/ or send a letter to
 * Creative Commons, 444 Castro Street, Suite 900, Mountain View, California,
 * 94041, USA.
 */

/*
 * This file defines the types of shared filters available and the associated
 * parameters.
 *
 * To extend the list of filters, create a file containing additional
 * enumerations to be added to enum bvfilter below.  Then #define
 * BVFILTER_EXTERNAL_INCLUDE as the name of that file before including
 * this file in your project.  Parameters need to be in a different file.
 */

#ifndef BVFILTER_H
#define BVFILTER_H

/*
 * bvfilter is an enumeration used to designate the type of filter being used.
 */
enum bvfiltertype {
	BVFILTER_DUMMY
	/* TBD */

#ifdef BVFILTER_EXTERNAL_INCLUDE
#include BVFILTER_EXTERNAL_INCLUDE
#endif
};

/*
 * bvfilterop contains the filter type and a pointer to the associated
 * parameters when the BVFLAG_FILTER operation is specified in
 * bvbltparams.flags.
 */
struct bvfilter {
	enum bvfiltertype filter;
	void *params;
};

#endif /* BVFILTER_H */