summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavcodec/lzo.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/lzo.c b/libavcodec/lzo.c
index 0ee7eca042..e4a1111b5e 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")
}