File: codec_dvi.h

package info (click to toggle)
rat 4.2.22-2.2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,896 kB
  • ctags: 3,717
  • sloc: ansic: 36,542; tcl: 2,740; sh: 2,675; makefile: 295
file content (23 lines) | stat: -rw-r--r-- 833 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
21
22
23
/*
 * FILE:    codec_dvi.h
 * AUTHORS: Orion Hodson
 *
 * Copyright (c) 1998-2001 University College London
 * All rights reserved.
 *
 * $Id: codec_dvi.h,v 1.7 2001/01/08 20:29:55 ucaccsp Exp $
 */

/* Just wrote the RAT interface, see codec_dvi.c for coder copyright [oth] */

#ifndef _CODEC_DVI_H_
#define _CODEC_DVI_H_

uint16_t               dvi_get_formats_count (void);
const codec_format_t* dvi_get_format        (uint16_t idx);
int                   dvi_state_create      (uint16_t idx, u_char **state);
void                  dvi_state_destroy     (uint16_t idx, u_char **state);
int                   dvi_encode            (uint16_t idx, u_char *state, sample     *in, coded_unit *out);
int                   dvi_decode            (uint16_t idx, u_char *state, coded_unit *in, sample     *out);

#endif /* _CODEC_DVI_H_ */