changeset 9489:f4fdab353f6f libavcodec

Some more simplifications of xan_unpack
author reimar
date Fri, 17 Apr 2009 19:03:43 +0000
parents bae097827a6d
children 9999ab77829b
files xan.c
diffstat 1 files changed, 6 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- 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;
             }