mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
Add code to testcode to ease comparing with liblzo.
Originally committed as revision 7775 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
f0ee3ea619
commit
d62a0c1e5d
@ -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")
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user