summaryrefslogtreecommitdiff
path: root/vp8/common
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@google.com>2012-04-24 11:07:27 -0700
committerRonald S. Bultje <rbultje@google.com>2012-04-24 11:07:27 -0700
commit29f8cbc2852e3874649aad1d9154c5c6181e50e2 (patch)
treea4ec862ff2431a49320a482fb9cb11d2dc5f471b /vp8/common
parent2210767c3f7ce179ea9b352c8de2790b23487bca (diff)
downloadlibvpx-29f8cbc2852e3874649aad1d9154c5c6181e50e2.tar
libvpx-29f8cbc2852e3874649aad1d9154c5c6181e50e2.tar.gz
libvpx-29f8cbc2852e3874649aad1d9154c5c6181e50e2.tar.bz2
libvpx-29f8cbc2852e3874649aad1d9154c5c6181e50e2.zip
Remove unused header files.
Change-Id: I8708358bb37edabcbe5dfc755ed18791d9e143c4
Diffstat (limited to 'vp8/common')
-rw-r--r--vp8/common/bigend.h32
-rw-r--r--vp8/common/dma_desc.h125
-rw-r--r--vp8/common/duck_io.h116
-rw-r--r--vp8/common/littlend.h33
4 files changed, 0 insertions, 306 deletions
diff --git a/vp8/common/bigend.h b/vp8/common/bigend.h
deleted file mode 100644
index 6ac3f8b5a..000000000
--- a/vp8/common/bigend.h
+++ /dev/null
@@ -1,32 +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.
- */
-
-
-#ifndef _bigend_h
-#define _bigend_h
-
-#if defined(__cplusplus)
-extern "C" {
-#endif
-
-#define invert2(x) ( (((x)>>8)&0x00ff) | (((x)<<8)&0xff00) )
-#define invert4(x) ( ((invert2(x)&0x0000ffff)<<16) | (invert2((x>>16))&0x0000ffff) )
-
-#define high_byte(x) (unsigned char)x
-#define mid2Byte(x) (unsigned char)(x >> 8)
-#define mid1Byte(x) (unsigned char)(x >> 16)
-#define low_byte(x) (unsigned char)(x >> 24)
-
-#define SWAPENDS 1
-
-#if defined(__cplusplus)
-}
-#endif
-#endif
diff --git a/vp8/common/dma_desc.h b/vp8/common/dma_desc.h
deleted file mode 100644
index b923da6e0..000000000
--- a/vp8/common/dma_desc.h
+++ /dev/null
@@ -1,125 +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.
- */
-
-
-#ifndef _dma_desc_h
-#define _dma_desc_h
-
-#if defined(__cplusplus)
-extern "C" {
-#endif
-
-
-#define NDSIZE_LG 0x00000900 // Next Descriptor Size
-#define NDSIZE_SM 0x00000800 // Next Descriptor Size
-#define NDSIZE_7 0x00000700 // Next Descriptor Size
-#define NDSIZE_6 0x00000600 // Next Descriptor Size
-#define NDSIZE_5 0x00000500 // Next Descriptor Size
-#define NDSIZE_4 0x00000400 // Next Descriptor Size
-#define NDSIZE_3 0x00000300 // Next Descriptor Size
-#define NDSIZE_2 0x00000200 // Next Descriptor Size
-#define NDSIZE_1 0x00000100 // Next Descriptor Size
-
-#define FLOW_STOP 0x0000
-#define FLOW_AUTO 0x1000
-#define FLOW_DESC_AR 0x4000
-#define FLOW_DESC_SM 0x6000
-#define FLOW_DESC_LG 0x7000
-
- typedef struct
- {
- unsigned int ndp;
- //unsigned short ndpl;
- //unsigned short ndph;
- unsigned int sa;
- //unsigned short sal;
- //unsigned short sah;
-
- unsigned short dmacfg;
- unsigned short xcnt;
- unsigned short xmod;
- unsigned short ycnt;
- unsigned short ymod;
-
- } LARGE_DESC;
-
- typedef struct
- {
- unsigned short ndpl;
- unsigned short sal;
- unsigned short sah;
- unsigned short dmacfg;
- unsigned short xcnt;
- unsigned short xmod;
- unsigned short ycnt;
- unsigned short ymod;
- } SMALL_DESC;
-
- typedef struct
- {
- unsigned short sal;
- unsigned short sah;
- unsigned short dmacfg;
- unsigned short xcnt;
- unsigned short xmod;
- unsigned short ycnt;
- unsigned short ymod;
- } ARRAY_DESC_7;
-
- typedef struct
- {
- unsigned short sal;
- unsigned short sah;
- unsigned short dmacfg;
- unsigned short xcnt;
- unsigned short xmod;
- unsigned short ycnt;
- } ARRAY_DESC_6;
-
- typedef struct
- {
- unsigned short sal;
- unsigned short sah;
- unsigned short dmacfg;
- unsigned short xcnt;
- unsigned short xmod;
- } ARRAY_DESC_5;
-
- typedef struct
- {
- unsigned short sal;
- unsigned short sah;
- unsigned short dmacfg;
- unsigned short xcnt;
- } ARRAY_DESC_4;
-
- typedef struct
- {
- unsigned short sal;
- unsigned short sah;
- unsigned short dmacfg;
- } ARRAY_DESC_3;
-
- typedef struct
- {
- unsigned short sal;
- unsigned short sah;
- } ARRAY_DESC_2;
-
- typedef struct
- {
- unsigned short sal;
- } ARRAY_DESC_1;
-
-#if defined(__cplusplus)
-}
-#endif
-
-#endif //_dma_desc_h
diff --git a/vp8/common/duck_io.h b/vp8/common/duck_io.h
deleted file mode 100644
index 43daa65bc..000000000
--- a/vp8/common/duck_io.h
+++ /dev/null
@@ -1,116 +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.
- */
-
-
-#ifndef _duck_io_h
-#define _duck_io_h
-
-#if defined(__cplusplus)
-extern "C" {
-#endif
-
-#if defined (_WIN32)
- typedef __int64 int64_t;
-#elif defined(__MWERKS__)
- typedef long long int64_t;
-#elif defined(__APPLE__) || defined(__POWERPC)
-#include <ppc/types.h>
-#else
- typedef long long int64_t;
-#endif
-
- typedef struct
- {
- int64_t offset; // offset to start from
- int blocking; // non-zero for blocking
- } re_open_t;
-
-
- typedef enum
- {
- SAL_ERR_MAX = -10,
- SAL_ERROR = -11, // Default error
- SAL_ERR_WSASTARTUP = -12,
- SAL_ERR_SOCKET_CREATE = -13,
- SAL_ERR_RESOLVING_HOSTNAME = -14,
- SAL_ERR_SERVER_CONNECTION = -15,
- SAL_ERR_SENDING_DATA = -16,
- SAL_ERR_RECEIVING_DATA = -17,
- SAL_ERR_404_FILE_NOT_FOUND = -18,
- SAL_ERR_PARSING_HTTP_HEADER = -19,
- SAL_ERR_PARSING_CONTENT_LEN = -20,
- SAL_ERR_CONNECTION_TIMEOUT = -21,
- SAL_ERR_FILE_OPEN_FAILED = -22,
- SAL_ERR_MIN = -23
- } SAL_ERR; /* EMH 1-15-03 */
-
-
- typedef struct sal_err_map_temp
- {
- SAL_ERR code;
- const char *decode;
-
- } sal_err_map_t;
-
-
- static char *sal_err_text(SAL_ERR e)
- {
- int t;
- const sal_err_map_t g_sal_err_map[] =
- {
- { SAL_ERR_WSASTARTUP, "Error with WSAStartup" },
- { SAL_ERR_SOCKET_CREATE, "Error creating socket" },
- { SAL_ERR_RESOLVING_HOSTNAME, "Error resolving hostname" },
- { SAL_ERR_SERVER_CONNECTION, "Error connecting to server" },
- { SAL_ERR_SENDING_DATA, "Error sending data" },
- { SAL_ERR_RECEIVING_DATA, "Error receiving data" },
- { SAL_ERR_404_FILE_NOT_FOUND, "Error file not found " },
- { SAL_ERR_PARSING_HTTP_HEADER, "Error parsing http header" },
- { SAL_ERR_PARSING_CONTENT_LEN, "Error parsing content length" },
- { SAL_ERR_CONNECTION_TIMEOUT, "Error Connection timed out" },
- { SAL_ERR_FILE_OPEN_FAILED, "Error opening file" }
- };
-
- for (t = 0; t < sizeof(g_sal_err_map) / sizeof(sal_err_map_t); t++)
- {
- if (e == g_sal_err_map[t].code)
- return (char *) g_sal_err_map[t].decode;
- }
-
- return 0;
- }
-
-
-
-
-
-
-
- int duck_open(const char *fname, unsigned long user_data);
-
- void duck_close(int ghndl);
-
- int duck_read(int ghndl, unsigned char *buf, int nbytes);
-
- int64_t duck_seek(int g_hndl, int64_t offs, int origin);
-
- int duck_read_finished(int han, int flag); /* FWG 7-9-99 */
-
- int duck_name(int handle, char name[], size_t max_len); /* EMH 9-23-03 */
-
- int duck_read_blocking(int handle, unsigned char *buffer, int bytes); /* EMH 9-23-03 */
-
- int64_t duck_available_data(int handle); /* EMH 10-23-03 */
-
-#if defined(__cplusplus)
-}
-#endif
-
-#endif
diff --git a/vp8/common/littlend.h b/vp8/common/littlend.h
deleted file mode 100644
index 99df1164c..000000000
--- a/vp8/common/littlend.h
+++ /dev/null
@@ -1,33 +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.
- */
-
-
-#ifndef _littlend_h
-#define _littlend_h
-
-#if defined(__cplusplus)
-extern "C" {
-#endif
-
-#define invert2(x) (x)
-#define invert4(x) (x)
-
-#define low_byte(x) (unsigned char)x
-#define mid1Byte(x) (unsigned char)(x >> 8)
-#define mid2Byte(x) (unsigned char)(x >> 16)
-#define high_byte(x) (unsigned char)(x >> 24)
-
-#define SWAPENDS 0
-
-#if defined(__cplusplus)
-}
-#endif
-
-#endif