File: convert_extra.h

package info (click to toggle)
rat 4.2.20-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,888 kB
  • ctags: 3,655
  • sloc: ansic: 36,042; sh: 3,481; tcl: 2,740; makefile: 293
file content (20 lines) | stat: -rw-r--r-- 646 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * FILE:    convert_extra.h
 * PROGRAM: RAT
 * AUTHOR:  O.Hodson <O.Hodson@cs.ucl.ac.uk>
 *
 * Copyright (c) 1998-2001 University College London
 * All rights reserved.
 *
 * $Id: convert_extra.h,v 1.6 2001/01/08 20:29:59 ucaccsp Exp $
 */
#ifndef __CONVERT_EXTRA_H__
#define __CONVERT_EXTRA_H__

int  extra_create  (const converter_fmt_t *cfmt, u_char **state, uint32_t *state_len);
void extra_destroy (u_char **state, uint32_t *state_len);
void extra_convert (const converter_fmt_t *cfmt, u_char *state, 
                    sample *src_buf, int src_len, 
                    sample *dst_buf, int dst_len);

#endif /* __CONVERT_EXTRA_H__ */