summaryrefslogtreecommitdiff
path: root/src/liba52/xine_decoder.c
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2006-06-02 19:54:05 +0000
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2006-06-02 19:54:05 +0000
commit329d8f32349ce401eaf8b486e496b65f27cbd920 (patch)
tree2d4d33b2c2b0a9881d8539df4be95885c9326145 /src/liba52/xine_decoder.c
parent41165ca3640ebf0edf97a783f057b572efbe94af (diff)
downloadxine-lib-329d8f32349ce401eaf8b486e496b65f27cbd920.tar.gz
xine-lib-329d8f32349ce401eaf8b486e496b65f27cbd920.tar.bz2
Include crc.c directly from xine_decoder.c since that's the only user of the
CRC code. Also take the opportunity to make the CRC code static. (Based on a Gentoo patch.) CVS patchset: 8007 CVS date: 2006/06/02 19:54:05
Diffstat (limited to 'src/liba52/xine_decoder.c')
-rw-r--r--src/liba52/xine_decoder.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/liba52/xine_decoder.c b/src/liba52/xine_decoder.c
index 70d5795c1..a8f7219e3 100644
--- a/src/liba52/xine_decoder.c
+++ b/src/liba52/xine_decoder.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine_decoder.c,v 1.77 2006/05/03 19:46:07 dsalt Exp $
+ * $Id: xine_decoder.c,v 1.78 2006/06/02 19:54:05 dsalt Exp $
*
* stuff needed to turn liba52 into a xine decoder plugin
*/
@@ -64,6 +64,8 @@
#include "buffer.h"
#include "xineutils.h"
+#include "crc.c"
+
#undef DEBUG_A52
#ifdef DEBUG_A52
int a52file;