sizing, ...): it shows me movies. * Fixed a major bug in sndcpcm: we must divide by 2 the length of the sound block because we work in 16 bits mode * Support for Video in wxMultimediaBoard * Other fixes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6090 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
70 lines
1.4 KiB
C++
70 lines
1.4 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
// Name: vidbdrv.cpp
|
|
// Purpose: wxMMedia
|
|
// Author: Guilhem Lavaux
|
|
// Created: 1997
|
|
// Updated: 1998
|
|
// Copyright: (C) 1997, 1998, Guilhem Lavaux
|
|
// License: wxWindows license
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
#ifdef __GNUG__
|
|
#pragma implementation "vidbase.h"
|
|
#endif
|
|
|
|
#include <wx/wxprec.h>
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include <wx/stream.h>
|
|
#include <wx/wfstream.h>
|
|
#endif
|
|
|
|
#include "vidbase.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
IMPLEMENT_ABSTRACT_CLASS(wxVideoBaseDriver, wxObject)
|
|
|
|
///
|
|
wxVideoBaseDriver::wxVideoBaseDriver()
|
|
{
|
|
m_video_output = NULL;
|
|
}
|
|
|
|
wxVideoBaseDriver::wxVideoBaseDriver(wxInputStream& str)
|
|
{
|
|
m_video_output = NULL;
|
|
}
|
|
|
|
wxVideoBaseDriver::~wxVideoBaseDriver()
|
|
{
|
|
}
|
|
|
|
bool wxVideoBaseDriver::AttachOutput(wxWindow& output)
|
|
{
|
|
m_video_output = &output;
|
|
return TRUE;
|
|
}
|
|
|
|
void wxVideoBaseDriver::DetachOutput()
|
|
{
|
|
m_video_output = NULL;
|
|
}
|
|
|
|
// Use an external frame for video output
|
|
|
|
wxFrame *wxVideoCreateFrame(wxVideoBaseDriver *vid_drv)
|
|
{
|
|
wxFrame *frame = new wxFrame(NULL, -1, "Video Output", wxDefaultPosition, wxSize(100, 100));
|
|
wxWindow *vid_out = new wxWindow(frame, -1, wxPoint(0, 0), wxSize(300, 300));
|
|
|
|
frame->Layout();
|
|
frame->Show(TRUE);
|
|
|
|
vid_drv->AttachOutput(*vid_out);
|
|
vid_drv->Play();
|
|
|
|
return frame;
|
|
}
|