author | zecke <zecke> | 2002-07-02 15:44:42 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-07-02 15:44:42 (UTC) |
commit | 78172d2d23543992605e273770692b5a0a84ed32 (patch) (side-by-side diff) | |
tree | 6cff38f725cf2c6360917d2687f6574285bb8ede | |
parent | e26bf96e2e4f2d1edf19e81dc67eace3cb8622dc (diff) | |
download | opie-78172d2d23543992605e273770692b5a0a84ed32.zip opie-78172d2d23543992605e273770692b5a0a84ed32.tar.gz opie-78172d2d23543992605e273770692b5a0a84ed32.tar.bz2 |
Try to load the null video plugi
-rw-r--r-- | noncore/multimedia/opieplayer2/lib.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/noncore/multimedia/opieplayer2/lib.cpp b/noncore/multimedia/opieplayer2/lib.cpp index 4b13f00..123ca91 100644 --- a/noncore/multimedia/opieplayer2/lib.cpp +++ b/noncore/multimedia/opieplayer2/lib.cpp @@ -1,24 +1,26 @@ #include <stdio.h> #include <stdlib.h> //#include <qpe/qpeapplication.h> #include <qfile.h> #include "frame.h" #include "lib.h" - +extern "C" { +vo_driver_t* init_video_out_plugin( config_values_t* conf, void* video); +} using namespace XINE; Lib::Lib() { printf("Lib"); QCString str( getenv("HOME") ); str += "/Settings/opiexine.cf"; // get the configuration m_config = xine_config_file_init( str.data() ); // allocate oss for sound // and fb for framebuffer @@ -35,45 +37,48 @@ Lib::Lib() { 0 ); char** files = xine_list_video_output_plugins(3); char* out; int i = 0; while ( ( out = files[i] ) != 0 ) { printf("Audio %s\n", out ); i++; } m_xine = xine_init( m_videoOutput, m_audioOutput, m_config ); + // test loading + m_videoOutput = ::init_video_out_plugin( m_config, NULL ); } Lib::~Lib() { delete m_config; xine_exit( m_xine ); delete m_videoOutput; //delete m_audioOutput; } QCString Lib::version() { QCString str( xine_get_str_version() ); return str; }; int Lib::majorVersion() { return xine_get_major_version(); } int Lib::minorVersion() { return xine_get_minor_version(); }; + int Lib::subVersion() { return xine_get_sub_version(); } int Lib::play( const QString& fileName, int startPos, int start_time ) { QString str = fileName; return xine_play( m_xine, QFile::encodeName(str.utf8() ).data(), startPos, start_time); } void Lib::stop() { xine_stop(m_xine ); |