From: Reimar Döffinger Date: Wed, 31 Jan 2007 09:37:02 +0000 (+0000) Subject: Add code to testcode to ease comparing with liblzo. X-Git-Tag: v0.5~10282 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d62a0c1e5db1607d3223cc18299e5f7f8f154237;p=platform%2Fupstream%2Flibav.git Add code to testcode to ease comparing with liblzo. Originally committed as revision 7775 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/lzo.c b/libavcodec/lzo.c index 0ee7eca..e4a1111 100644 --- a/libavcodec/lzo.c +++ b/libavcodec/lzo.c @@ -255,7 +255,13 @@ int main(int argc, char *argv[]) { for (i = 0; i < 300; i++) { START_TIMER inlen = clen; outlen = MAXSZ; +#ifdef LIBLZO + if (lzo1x_decompress_safe(comp, inlen, decomp, &outlen, NULL)) +#elif defined(LIBLZO_UNSAFE) + if (lzo1x_decompress(comp, inlen, decomp, &outlen, NULL)) +#else if (lzo1x_decode(decomp, &outlen, comp, &inlen)) +#endif av_log(NULL, AV_LOG_ERROR, "decompression error\n"); STOP_TIMER("lzod") }