]> git.sesse.net Git - vlc/commitdiff
Ah Ah
authorClément Stenac <zorglub@videolan.org>
Sun, 26 Nov 2006 17:22:54 +0000 (17:22 +0000)
committerClément Stenac <zorglub@videolan.org>
Sun, 26 Nov 2006 17:22:54 +0000 (17:22 +0000)
modules/gui/macosx/controls.m
src/input/input.c

index 48825bfdb6c3a7b39a0fc51a9d3cb2be9abb453c..fe53d299c56361af9a9cd7ba5304aa155e89dd32 100644 (file)
@@ -39,6 +39,9 @@
 #import "playlist.h"
 #include <vlc_osd.h>
 
+/* UGLY UGLY UGLY FIXME FIXME FIXME. Need solution for b_can_pace_control.
+ * Put it public ? Is it needed here ?*/
+#include "../../../src/input/input_internal.h"
 
 /*****************************************************************************
  * VLCControls implementation 
     {
         if( p_input != NULL )
         {
-            bEnabled = p_input->input.b_can_pace_control;
+            bEnabled = p_input->p->input.b_can_pace_control;
         }
         else
         {
index 5111280a627e0c9dee954fbea2d9cf5118dd3557..482fffd7d1818d1d987ad4e42a475e141b5bff7b 100644 (file)
@@ -38,7 +38,7 @@
 #include <vlc_playlist.h>
 #include <vlc_interface.h>
 #include <vlc_url.h>
-
+#include <vlc_demux.h>
 #include <vlc_charset.h>
 
 #ifdef HAVE_SYS_STAT_H