# HG changeset patch # User reimar # Date 1239995023 0 # Node ID f4fdab353f6fc2ebdbae86f1a4c12b92464503fc # Parent bae097827a6da6b319244e634a32d42aed9caab9 Some more simplifications of xan_unpack diff -r bae097827a6d -r f4fdab353f6f xan.c --- a/xan.c Fri Apr 17 18:56:47 2009 +0000 +++ b/xan.c Fri Apr 17 19:03:43 2009 +0000 @@ -35,6 +35,7 @@ #include "libavutil/intreadwrite.h" #include "avcodec.h" +#include "bytestream.h" // for av_memcpy_backptr #include "libavutil/lzo.h" @@ -128,8 +129,6 @@ { unsigned char opcode; int size; - int offset; - int byte1, byte2, byte3; unsigned char *dest_end = dest + dest_len; while (dest < dest_end) { @@ -139,33 +138,24 @@ int size2, back; if ( (opcode & 0x80) == 0 ) { - offset = *src++; - size = opcode & 3; size2 = ((opcode & 0x1c) >> 2) + 3; - back = ((opcode & 0x60) << 3) + offset + 1; + back = ((opcode & 0x60) << 3) + *src++ + 1; } else if ( (opcode & 0x40) == 0 ) { - byte1 = *src++; - byte2 = *src++; - - size = byte1 >> 6; + size = *src >> 6; size2 = (opcode & 0x3f) + 4; - back = ((byte1 & 0x3f) << 8) + byte2 + 1; + back = (bytestream_get_be16(&src) & 0x3fff) + 1; } else { - byte1 = *src++; - byte2 = *src++; - byte3 = *src++; - size = opcode & 3; - size2 = byte3 + 5 + ((opcode & 0xc) << 6); - back = ((opcode & 0x10) << 12) + 1 + (byte1 << 8) + byte2; + back = ((opcode & 0x10) << 12) + 1 + bytestream_get_be16(&src); + size2 = *src++ + 5 + ((opcode & 0xc) << 6); if (dest >= dest_end || size > dest_end - dest) return; }