comparison lzo.c @ 686:b084f8cd043f libavutil

Remove more functions disabled by major version bump.
author reimar
date Sun, 08 Mar 2009 15:02:12 +0000
parents 8e5654be3500
children a44606418c82
comparison
equal deleted inserted replaced
685:634bcf10f5df 686:b084f8cd043f
232 *inlen = 0; 232 *inlen = 0;
233 *outlen = c.out_end - c.out; 233 *outlen = c.out_end - c.out;
234 return c.error; 234 return c.error;
235 } 235 }
236 236
237 #if LIBAVUTIL_VERSION_MAJOR < 50
238 int lzo1x_decode(void *out, int *outlen, const void *in, int *inlen) {
239 return av_lzo1x_decode(out, outlen, in, inlen);
240 }
241 #endif
242
243 #ifdef TEST 237 #ifdef TEST
244 #include <stdio.h> 238 #include <stdio.h>
245 #include <lzo/lzo1x.h> 239 #include <lzo/lzo1x.h>
246 #include "log.h" 240 #include "log.h"
247 #define MAXSZ (10*1024*1024) 241 #define MAXSZ (10*1024*1024)