#ifdef __GNUG__
#pragma implementation "vidbase.h"
#endif
+
+#include <wx/wxprec.h>
+
+#ifndef WX_PRECOMP
+#include <wx/stream.h>
#include <wx/wfstream.h>
-#include "vidbase.h"
-#ifdef WX_PRECOMP
-#include "wx_prec.h"
-#else
-#include "wx/wx.h"
#endif
+#include "vidbase.h"
+
#ifdef __BORLANDC__
#pragma hdrstop
#endif
-#if !USE_SHARED_LIBRARY
IMPLEMENT_ABSTRACT_CLASS(wxVideoBaseDriver, wxObject)
IMPLEMENT_DYNAMIC_CLASS(wxVideoOutput, wxWindow)
-#endif
wxVideoOutput::wxVideoOutput()
: wxWindow()
vid_out->DynamicSize(TRUE);
frame->Layout();
frame->Show(TRUE);
- wxYield();
vid_drv->AttachOutput(*vid_out);
+ vid_drv->Play();
return frame;
}