summaryrefslogtreecommitdiff
path: root/src/libxinevdec/idcinvideo.c
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-08-25 21:51:37 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-08-25 21:51:37 +0000
commitbabb07bcbec3674a3f542cf6ae3f2d6b212a3ed4 (patch)
tree3074007521ca0f6f2b730ac3e85003bdac8d4fdd /src/libxinevdec/idcinvideo.c
parentca053acfc8a4a11274f1f0978bd0f52b9ac8cc06 (diff)
downloadxine-lib-babb07bcbec3674a3f542cf6ae3f2d6b212a3ed4.tar.gz
xine-lib-babb07bcbec3674a3f542cf6ae3f2d6b212a3ed4.tar.bz2
Reduce GCC verbosity (various prototype declaration fixes). ffmpeg, wine and fft*post are untouched (fft: for now).
CVS patchset: 5310 CVS date: 2003/08/25 21:51:37
Diffstat (limited to 'src/libxinevdec/idcinvideo.c')
-rw-r--r--src/libxinevdec/idcinvideo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libxinevdec/idcinvideo.c b/src/libxinevdec/idcinvideo.c
index 97dd8cb93..70d7ea818 100644
--- a/src/libxinevdec/idcinvideo.c
+++ b/src/libxinevdec/idcinvideo.c
@@ -21,7 +21,7 @@
* the Id CIN format, visit:
* http://www.csse.monash.edu.au/~timf/
*
- * $Id: idcinvideo.c,v 1.13 2003/08/04 03:47:10 miguelfreitas Exp $
+ * $Id: idcinvideo.c,v 1.14 2003/08/25 21:51:43 f1rmb Exp $
*/
#include <stdio.h>
@@ -92,7 +92,7 @@ static int num_huff_nodes[256];
/*
* Decodes input Huffman data using the Huffman table.
*/
-void huff_decode(idcinvideo_decoder_t *this) {
+static void huff_decode(idcinvideo_decoder_t *this) {
hnode_t *hnodes;
long i;
int prev;
@@ -135,7 +135,7 @@ void huff_decode(idcinvideo_decoder_t *this) {
* Returns the node index of the lowest unused node, or -1 if all nodes
* are used.
*/
-int huff_smallest_node(hnode_t *hnodes, int num_hnodes) {
+static int huff_smallest_node(hnode_t *hnodes, int num_hnodes) {
int i;
int best, best_node;
@@ -167,7 +167,7 @@ int huff_smallest_node(hnode_t *hnodes, int num_hnodes) {
* num_huff_nodes[prev] - contains the index to the root node of the tree.
* That is: huff_nodes[prev][num_huff_nodes[prev]] is the root node.
*/
-void huff_build_tree(int prev) {
+static void huff_build_tree(int prev) {
hnode_t *node, *hnodes;
int num_hnodes, i;