Removed wxMMedia
Added wxMMedia2: it should work on linux (wave read/write, aiff read only) I begin to write windows driver now Added some file to filelist.txt Make configure build wxMMedia2 makefiles git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3381 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
102
utils/wxMMedia2/lib/vidbase.h
Normal file
102
utils/wxMMedia2/lib/vidbase.h
Normal file
@@ -0,0 +1,102 @@
|
||||
// /////////////////////////////////////////////////////////////////////////////
|
||||
// Name: vidbase.h
|
||||
// Purpose: wxMMedia
|
||||
// Author: Guilhem Lavaux
|
||||
// Created: 1997
|
||||
// Updated: 1998
|
||||
// Copyright: (C) 1997, 1998, Guilhem Lavaux
|
||||
// CVS: $Id$
|
||||
// License: wxWindows license
|
||||
// /////////////////////////////////////////////////////////////////////////////
|
||||
/* Real -*- C++ -*- */
|
||||
#ifndef __VID_bdrv_H__
|
||||
#define __VID_bdrv_H__
|
||||
|
||||
#ifdef __GNUG__
|
||||
#pragma interface
|
||||
#endif
|
||||
|
||||
#include "wx/string.h"
|
||||
#include "wx/window.h"
|
||||
#include "wx/frame.h"
|
||||
|
||||
///
|
||||
typedef enum {
|
||||
wxVIDEO_MSAVI,
|
||||
wxVIDEO_MPEG,
|
||||
wxVIDEO_QT,
|
||||
wxVIDEO_GIF,
|
||||
wxVIDEO_JMOV,
|
||||
wxVIDEO_FLI,
|
||||
wxVIDEO_IFF,
|
||||
wxVIDEO_SGI,
|
||||
wxVIDEO_MPEG2
|
||||
} ///
|
||||
wxVideoType;
|
||||
|
||||
///
|
||||
class wxVideoBaseDriver;
|
||||
class wxVideoOutput : public wxWindow {
|
||||
///
|
||||
DECLARE_DYNAMIC_CLASS(wxVideoOutput)
|
||||
protected:
|
||||
bool m_dyn_size;
|
||||
public:
|
||||
///
|
||||
wxVideoOutput();
|
||||
///
|
||||
wxVideoOutput(wxWindow *parent, const wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize, const long style = 0,
|
||||
const wxString& name = "video_output");
|
||||
///
|
||||
virtual ~wxVideoOutput();
|
||||
|
||||
///
|
||||
bool DynamicSize() { return m_dyn_size; }
|
||||
///
|
||||
void DynamicSize(bool dyn) { m_dyn_size = dyn; }
|
||||
};
|
||||
|
||||
///
|
||||
class wxVideoBaseDriver : public wxObject {
|
||||
///
|
||||
DECLARE_ABSTRACT_CLASS(wxVideoBaseDriver)
|
||||
protected:
|
||||
wxVideoOutput *m_video_output;
|
||||
public:
|
||||
friend class wxVideoOutput;
|
||||
|
||||
///
|
||||
wxVideoBaseDriver();
|
||||
///
|
||||
wxVideoBaseDriver(wxInputStream& str);
|
||||
///
|
||||
virtual ~wxVideoBaseDriver();
|
||||
|
||||
///
|
||||
virtual bool Pause() = 0;
|
||||
///
|
||||
virtual bool Resume() = 0;
|
||||
|
||||
///
|
||||
virtual bool SetVolume(wxUint8 vol) = 0;
|
||||
///
|
||||
virtual bool Resize(wxUint16 w, wxUint16 h) = 0;
|
||||
|
||||
///
|
||||
virtual bool IsCapable(wxVideoType WXUNUSED(v_type)) { return FALSE; }
|
||||
|
||||
///
|
||||
virtual void OnFinished() {}
|
||||
|
||||
///
|
||||
virtual bool AttachOutput(wxVideoOutput& output);
|
||||
///
|
||||
virtual void DetachOutput();
|
||||
};
|
||||
|
||||
extern wxFrame *wxVideoCreateFrame(wxVideoBaseDriver *vid_drv);
|
||||
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user