[MPlayer-users] libdvdnav compile error
    Daniel Hottinger 
    TheHotti at gmx.ch
       
    Sun May 19 11:23:01 CEST 2002
    
    
  
Hi,
> In file included from dvdnav_stream.c:14:
> ../spudec.h:16: syntax error before `vo_functions_t'
> I think 'vo_functions_t' not being defined is causing the problem.
Correct. You have to #include video_out.h before spudec.h is included:
=====8<----- dvdnav_stream.c
#include "stream.h"
#include "dvdnav_stream.h"
// This line solves the problem
#include "../libvo/video_out.h"
#include "../spudec.h"
=====8<-----
Hotti
BTW: I'm new here, so please send flames directly to me ;-)
-- 
Interview mit Donald E. Knuth, http://www.heise.de/ct/02/05/190/
.______________________________________________________________________________.
|      c't: Unter Linux?       Knuth: Ja.                                      |
|______c't:_Gar_kein_Windows?__Knuth:_Um_Himmels_willen,_nein!_________________|
    
    
More information about the MPlayer-users
mailing list