- merge v0.01 --> Añadido fileselector - Añadidas fuentes de Gem y Pure Data - pix2jpg incluído en Gem. Archivos de construcción de Gem modificados. - Añadido fichero ompiling.txt con instrucciones de compilación
101 lines
2.7 KiB
C++
101 lines
2.7 KiB
C++
/* -----------------------------------------------------------------
|
|
|
|
GEM - Graphics Environment for Multimedia
|
|
|
|
Load a digital video (like AVI, Mpeg, Quicktime) into a pix block
|
|
(OS independant parent-class)
|
|
|
|
Copyright (c) 1997-1999 Mark Danks. mark@danks.org
|
|
Copyright (c) Günther Geiger. geiger@epy.co.at
|
|
Copyright (c) 2001-2011 IOhannes m zmölnig. forum::für::umläute. IEM. zmoelnig@iem.at
|
|
For information on usage and redistribution, and for a DISCLAIMER OF ALL
|
|
WARRANTIES, see the file, "GEM.LICENSE.TERMS" in this distribution.
|
|
|
|
-----------------------------------------------------------------*/
|
|
|
|
#ifndef _INCLUDE_GEMPLUGIN__FILMDARWIN_FILMDARWIN_H_
|
|
#define _INCLUDE_GEMPLUGIN__FILMDARWIN_FILMDARWIN_H_
|
|
|
|
#if defined __APPLE__ && !defined __x86_64__
|
|
// with OSX10.6, apple has removed loads of Carbon functionality (in 64bit mode)
|
|
// LATER make this a real check in configure
|
|
# define HAVE_CARBONQUICKTIME
|
|
#endif
|
|
|
|
|
|
#ifdef HAVE_CARBONQUICKTIME
|
|
#include "plugins/film.h"
|
|
#include "Gem/Image.h"
|
|
|
|
# include <Carbon/Carbon.h>
|
|
# include <QuickTime/QuickTime.h>
|
|
|
|
/*-----------------------------------------------------------------
|
|
-------------------------------------------------------------------
|
|
CLASS
|
|
filmDarwin
|
|
|
|
film-loader class for MacOS-X (Darwin)
|
|
|
|
KEYWORDS
|
|
pix film movie
|
|
|
|
DESCRIPTION
|
|
|
|
-----------------------------------------------------------------*/
|
|
namespace gem { namespace plugins {
|
|
class GEM_EXPORT filmDarwin : public film {
|
|
public:
|
|
|
|
//////////
|
|
// Constructor
|
|
filmDarwin(void);
|
|
|
|
//////////
|
|
// Destructor
|
|
virtual ~filmDarwin(void);
|
|
|
|
//////////
|
|
// open a movie up
|
|
virtual bool open(const std::string filename, const gem::Properties&);
|
|
//////////
|
|
// close the movie file
|
|
virtual void close(void);
|
|
|
|
//////////
|
|
// get the next frame
|
|
virtual pixBlock* getFrame(void);
|
|
|
|
//////////
|
|
// set the next frame to read;
|
|
virtual errCode changeImage(int imgNum, int trackNum=-1);
|
|
|
|
// cannot be used within a threaded context
|
|
virtual bool isThreadable(void) { return false; }
|
|
|
|
// Property handling
|
|
virtual bool enumProperties(gem::Properties&readable,gem::Properties&writeable);
|
|
virtual void setProperties(gem::Properties&props);
|
|
virtual void getProperties(gem::Properties&props);
|
|
|
|
protected:
|
|
GLenum m_wantedFormat; // format requested by the user
|
|
bool m_auto; // automatic progression
|
|
int m_numFrames, m_numTracks; // number of frames in video
|
|
int m_curFrame, m_lastFrame;
|
|
pixBlock m_image; // output image
|
|
|
|
|
|
Movie m_movie;
|
|
GWorldPtr m_srcGWorld;
|
|
TimeValue m_movieTime;
|
|
Track m_movieTrack;
|
|
Media m_movieMedia;
|
|
TimeValue m_timeScale;
|
|
double m_durationf;
|
|
double m_fps;
|
|
|
|
};};};
|
|
|
|
#endif //HAVE_CARBONQUICKTIME
|
|
#endif // for header file
|