summaryrefslogtreecommitdiff
path: root/lib/time0.c
blob: 3d3f1d8fef58cc2d4bdcb8ce3ef15c890c6f5c65 (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
52
53
54
55
/********************************************************************
 *                                                                  *
 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE.   *
 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS     *
 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.       *
 *                                                                  *
 * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001             *
 * by the XIPHOPHORUS Company http://www.xiph.org/                  *
 *                                                                  *
 ********************************************************************

 function: time backend 0 (dummy)
 last mod: $Id: time0.c,v 1.11 2001/12/20 01:00:30 segher Exp $

 ********************************************************************/

#include <stdlib.h>
#include <string.h>
#include "vorbis/codec.h"
#include "codec_internal.h"
#include "registry.h"
#include "misc.h"

static void time0_pack (vorbis_info_time *i,oggpack_buffer *opb){
}
static vorbis_info_time *time0_unpack (vorbis_info *vi,oggpack_buffer *opb){
  return "";

}
static vorbis_info_time *time0_copy_info (vorbis_info_time *vi){
  return "";
}
static vorbis_look_time *time0_look (vorbis_dsp_state *vd,vorbis_info_mode *mi,
                              vorbis_info_time *i){
  return "";
}
static void time0_free_info(vorbis_info_time *i){
}
static void time0_free_look(vorbis_look_time *i){
}
static int time0_forward(vorbis_block *vb,vorbis_look_time *i,
		    float *in,float *out){
  return(0);
}
static int time0_inverse(vorbis_block *vb,vorbis_look_time *i,
		    float *in,float *out){
  return(0);
}

/* export hooks */
vorbis_func_time time0_exportbundle={
  &time0_pack,&time0_unpack,&time0_look,&time0_copy_info,&time0_free_info,
  &time0_free_look,&time0_forward,&time0_inverse
};