author | harlekin <harlekin> | 2002-08-16 17:24:43 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-08-16 17:24:43 (UTC) |
commit | 472245d285824e7bebe1ee66d03580b1f40ae1d6 (patch) (side-by-side diff) | |
tree | 353af483361634e376f55d0eb014127243dda44c | |
parent | 754897cab228ab41ab317218a523b28003c285a8 (diff) | |
download | opie-472245d285824e7bebe1ee66d03580b1f40ae1d6.zip opie-472245d285824e7bebe1ee66d03580b1f40ae1d6.tar.gz opie-472245d285824e7bebe1ee66d03580b1f40ae1d6.tar.bz2 |
now, finally
-rw-r--r-- | noncore/multimedia/opieplayer2/lib.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/multimedia/opieplayer2/lib.cpp b/noncore/multimedia/opieplayer2/lib.cpp index 3848652..39364ab 100644 --- a/noncore/multimedia/opieplayer2/lib.cpp +++ b/noncore/multimedia/opieplayer2/lib.cpp @@ -65,33 +65,33 @@ extern "C" { using namespace XINE; Lib::Lib(XineVideoWidget* widget) { m_video = false; m_wid = widget; printf("Lib"); QCString str( getenv("HOME") ); str += "/Settings/opiexine.cf"; // get the configuration // not really OO, should be an extra class, later if ( !QFile(str).exists() ) { QFile f(str); f.open(IO_WriteOnly); QTextStream ts( &f ); - ts << "misc.memcpy_method:glibc \n"; + ts << "misc.memcpy_method:glibc\n"; f.close(); } m_config = xine_config_file_init( str.data() ); // allocate oss for sound // and fb for framebuffer m_audioOutput= xine_load_audio_output_plugin( m_config, "oss") ; if (m_audioOutput == NULL ) printf("Failure\n"); else printf("Success\n"); // test code /* m_videoOutput = xine_load_video_output_plugin(m_config, "fb", |