comparison base64.c @ 716:3f3e69baaaf8 libavutil

Mark non-exported functions in test and example programs as static.
author diego
date Tue, 31 Mar 2009 09:32:59 +0000
parents d3cd35bec3d0
children 0795a743bda1
comparison
equal deleted inserted replaced
715:6a92aeca1990 716:3f3e69baaaf8
104 #undef printf 104 #undef printf
105 105
106 #define MAX_DATA_SIZE 1024 106 #define MAX_DATA_SIZE 1024
107 #define MAX_ENCODED_SIZE 2048 107 #define MAX_ENCODED_SIZE 2048
108 108
109 int test_encode_decode(const uint8_t *data, unsigned int data_size, const char *encoded_ref) 109 static int test_encode_decode(const uint8_t *data, unsigned int data_size,
110 const char *encoded_ref)
110 { 111 {
111 char encoded[MAX_ENCODED_SIZE]; 112 char encoded[MAX_ENCODED_SIZE];
112 uint8_t data2[MAX_DATA_SIZE]; 113 uint8_t data2[MAX_DATA_SIZE];
113 int data2_size, max_data2_size = MAX_DATA_SIZE; 114 int data2_size, max_data2_size = MAX_DATA_SIZE;
114 115