summaryrefslogtreecommitdiff
path: root/multimedia/transcode/patches/patch-aw
blob: 982bfed063ec2a13874a0bc0503cddbed1868989 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
$NetBSD: patch-aw,v 1.4 2008/08/26 13:21:59 drochner Exp $

--- ./import/nuv/import_nuv.c.orig	2008-07-12 16:49:58.000000000 +0200
+++ ./import/nuv/import_nuv.c
@@ -16,7 +16,9 @@
 #include "libtc/libtc.h"
 #include "aclib/ac.h"
 #include "import/magic.h"
+#ifdef HAVE_LZO
 #include "libtc/tc_lzo.h"
+#endif
 
 
 
@@ -474,6 +476,7 @@ static int nuv_decode_video(TCModuleInst
     in_framesize = inframe->video_size-5-sizeof(pd->cdata);
     out_framesize = pd->width*pd->height + (pd->width/2)*(pd->height/2)*2;
 
+#ifdef HAVE_LZO
     if (comptype == '2' || comptype == '3') {
         /* Undo LZO compression */
         uint8_t *decompressed_frame;
@@ -496,6 +499,7 @@ static int nuv_decode_video(TCModuleInst
         /* Convert 2 -> 1, 3 -> 0 */
         comptype ^= 3;
     }
+#endif
 
     switch (comptype) {