Mercurial > mplayer.hg
changeset 3183:ce9acee4e129
Fix spudec compile with libdvdread enabled.
author | atmos4 |
---|---|
date | Wed, 28 Nov 2001 14:55:56 +0000 |
parents | 95bbd21e8e1f |
children | 39f88ed93dd1 |
files | spudec.c spudec.h |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/spudec.c Wed Nov 28 14:29:14 2001 +0000 +++ b/spudec.c Wed Nov 28 14:55:56 2001 +0000 @@ -10,6 +10,7 @@ For information on SPU format see <URL:http://sam.zoy.org/doc/dvd/subtitles/> */ +#include "config.h" #ifdef USE_DVDREAD
--- a/spudec.h Wed Nov 28 14:29:14 2001 +0000 +++ b/spudec.h Wed Nov 28 14:55:56 2001 +0000 @@ -1,8 +1,8 @@ +#include "config.h" #ifdef USE_DVDREAD #ifndef _MPLAYER_SPUDEC_H #define _MPLAYER_SPUDEC_H -#include "config.h" #include "stream.h" void spudec_heartbeat(void *this, int pts100); void spudec_assemble(void *this, unsigned char *packet, int len, int pts100); @@ -12,3 +12,4 @@ #endif #endif +