comparison elbg.h @ 5163:9ecbfc0c82bf libavcodec

add multiple inclusion guards to headers
author mru
date Sun, 17 Jun 2007 00:01:30 +0000
parents ed41cfae128d
children 3fd46e281bd8
comparison
equal deleted inserted replaced
5162:4394344397d8 5163:9ecbfc0c82bf
15 * 15 *
16 * You should have received a copy of the GNU Lesser General Public 16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software 17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */ 19 */
20
21 #ifndef AVCODEC_ELBG_H
22 #define AVCODEC_ELBG_H
20 23
21 #include "random.h" 24 #include "random.h"
22 25
23 /** 26 /**
24 * Implementation of the Enhanced LBG Algorithm 27 * Implementation of the Enhanced LBG Algorithm
46 * **points. Get the same parameters as ff_do_elbg. 49 * **points. Get the same parameters as ff_do_elbg.
47 */ 50 */
48 void ff_init_elbg(int *points, int dim, int numpoints, int *codebook, 51 void ff_init_elbg(int *points, int dim, int numpoints, int *codebook,
49 int numCB, int num_steps, int *closest_cb, 52 int numCB, int num_steps, int *closest_cb,
50 AVRandomState *rand_state); 53 AVRandomState *rand_state);
54
55 #endif