Mercurial > libavcodec.hg
annotate tableprint.h @ 10809:35ced8a13d7d libavcodec
Cosmetics : remove duplicated comment.
author | jai_menon |
---|---|
date | Fri, 08 Jan 2010 14:33:35 +0000 |
parents | 2980d9efc542 |
children | 3d011a01a6a0 |
rev | line source |
---|---|
10469 | 1 /* |
2 * Generate a file for hardcoded tables | |
3 * | |
4 * Copyright (c) 2009 Reimar Döffinger <Reimar.Doeffinger@gmx.de> | |
5 * | |
6 * This file is part of FFmpeg. | |
7 * | |
8 * FFmpeg is free software; you can redistribute it and/or | |
9 * modify it under the terms of the GNU Lesser General Public | |
10 * License as published by the Free Software Foundation; either | |
11 * version 2.1 of the License, or (at your option) any later version. | |
12 * | |
13 * FFmpeg is distributed in the hope that it will be useful, | |
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 * Lesser General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU Lesser General Public | |
19 * License along with FFmpeg; if not, write to the Free Software | |
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
21 */ | |
22 | |
23 #ifndef AVCODEC_TABLEPRINT_H | |
24 #define AVCODEC_TABLEPRINT_H | |
25 | |
26 #include <stdint.h> | |
27 | |
28 /** | |
29 * \defgroup printfuncs Predefined functions for printing tables | |
30 * | |
31 * \{ | |
32 */ | |
33 void write_int8_array (const void *, int, int); | |
34 void write_uint32_array (const void *, int, int); | |
10581
2980d9efc542
Add support for hardcoding the motionpixels rgb to yuv table.
reimar
parents:
10469
diff
changeset
|
35 void write_int8_2d_array (const void *, int, int); |
10469 | 36 void write_uint32_2d_array(const void *, int, int); |
37 /** \} */ // end of printfuncs group | |
38 | |
39 struct tabledef { | |
40 /** String that declares the array. Adding " = { ..." after it should | |
41 * make a valid initializer, adding "extern" before and ";" if possible | |
42 * should make a valid extern declaration. */ | |
43 const char *declaration; | |
44 /** Function used to print the table data (i.e. the part in {}). | |
45 * Should be one of the predefined write_*_array functions. */ | |
46 void (*printfunc)(const void *, int, int); | |
47 /** Pointer passed to the printfunc, usually a pointer to the start | |
48 * of the array to be printed. */ | |
49 const void *data; | |
50 int size; ///< size of the first dimension of the array | |
51 int size2; ///< size of the second dimension of the array if any | |
52 }; | |
53 | |
54 /** Initializes all the tables described in the tables array */ | |
55 void tableinit(void); | |
56 /** Describes the tables that should be printed */ | |
57 extern const struct tabledef tables[]; | |
58 | |
59 #endif /* AVCODEC_TABLEPRINT_H */ |