summaryrefslogtreecommitdiff
path: root/lib/time0.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/time0.c')
-rw-r--r--lib/time0.c55
1 files changed, 0 insertions, 55 deletions
diff --git a/lib/time0.c b/lib/time0.c
deleted file mode 100644
index 7ef9d657..00000000
--- a/lib/time0.c
+++ /dev/null
@@ -1,55 +0,0 @@
-/********************************************************************
- * *
- * 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.10 2001/08/13 01:36:57 xiphmont 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
-};