summaryrefslogtreecommitdiff
path: root/vp8/common/preproc.h
diff options
context:
space:
mode:
authorJohn Koleszar <jkoleszar@google.com>2010-12-14 00:05:04 -0500
committerJohn Koleszar <jkoleszar@google.com>2010-12-14 00:05:05 -0500
commit6a80032280305c41f20403b07698ca969ec7edb2 (patch)
treefd06c759f687f3ac2f1dcad4f2f4926e07bb4b7f /vp8/common/preproc.h
parentb6905e36d9a55589033723057b20a736844d1c17 (diff)
parent3809d7bbd984a763cf7f288a51c9924667addf4a (diff)
downloadlibvpx-6a80032280305c41f20403b07698ca969ec7edb2.tar
libvpx-6a80032280305c41f20403b07698ca969ec7edb2.tar.gz
libvpx-6a80032280305c41f20403b07698ca969ec7edb2.tar.bz2
libvpx-6a80032280305c41f20403b07698ca969ec7edb2.zip
Merge remote branch 'origin/master' into experimental
Change-Id: Ic88e9b2fcf1dcb2852a7205bcda3f181103f5612
Diffstat (limited to 'vp8/common/preproc.h')
-rw-r--r--vp8/common/preproc.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/vp8/common/preproc.h b/vp8/common/preproc.h
deleted file mode 100644
index 0b142bda7..000000000
--- a/vp8/common/preproc.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
- *
- * Use of this source code is governed by a BSD-style license
- * that can be found in the LICENSE file in the root of the source
- * tree. An additional intellectual property rights grant can be found
- * in the file PATENTS. All contributing project authors may
- * be found in the AUTHORS file in the root of the source tree.
- */
-
-
-/****************************************************************************
-*
-* Module Title : preproc.h
-*
-* Description : simple preprocessor
-*
-****************************************************************************/
-
-#ifndef __INC_PREPROC_H
-#define __INC_PREPROC_H
-
-/****************************************************************************
-* Types
-****************************************************************************/
-
-typedef struct
-{
- unsigned char *frame_buffer;
- int frame;
- unsigned int *fixed_divide;
-
- unsigned char *frame_buffer_alloc;
- unsigned int *fixed_divide_alloc;
-} pre_proc_instance;
-
-/****************************************************************************
-* Functions.
-****************************************************************************/
-void pre_proc_machine_specific_config(void);
-void delete_pre_proc(pre_proc_instance *ppi);
-int init_pre_proc(pre_proc_instance *ppi, int frame_size);
-extern void spatial_filter_c(pre_proc_instance *ppi, unsigned char *s, unsigned char *d, int width, int height, int pitch, int strength);
-extern void (*temp_filter)(pre_proc_instance *ppi, unsigned char *s, unsigned char *d, int bytes, int strength);
-
-#endif