[vlc-commits] commit: Fixed kate build without libtiger. (Laurent Aimar )

git at videolan.org git at videolan.org
Sun May 2 02:42:07 CEST 2010


vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Sun May  2 02:41:09 2010 +0200| [feb4ecb5602c861c9ac02ac5c62fbf32c2ec43c8] | committer: Laurent Aimar 

Fixed kate build without libtiger.

It closes #3586.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=feb4ecb5602c861c9ac02ac5c62fbf32c2ec43c8
---

 modules/codec/kate.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/modules/codec/kate.c b/modules/codec/kate.c
index cdff579..ee12f48 100644
--- a/modules/codec/kate.c
+++ b/modules/codec/kate.c
@@ -1183,9 +1183,11 @@ static subpicture_t *DecodePacket( decoder_t *p_dec, kate_packet *p_kp, block_t
             return NULL;
     }
     subpicture_updater_t updater = {
+#ifdef HAVE_TIGER
         .pf_validate = TigerValidateSubpicture,
         .pf_update   = TigerUpdateSubpicture,
         .pf_destroy  = TigerDestroySubpicture,
+#endif
         .p_sys       = p_spu_sys,
     };
     p_spu = decoder_NewSubpicture( p_dec, p_sys->b_use_tiger ? &updater : NULL );



More information about the vlc-commits mailing list