author | erik <erik> | 2007-02-05 20:20:18 (UTC) |
---|---|---|
committer | erik <erik> | 2007-02-05 20:20:18 (UTC) |
commit | a505f79190d4d14a7c9595af3e9b78d9c613da21 (patch) (unidiff) | |
tree | bfdeab48ca93857d5c2ec4f7d9380bc61b2c08b1 | |
parent | b017b14c0ec6d327e061a1f96209e19fdc59885a (diff) | |
download | opie-a505f79190d4d14a7c9595af3e9b78d9c613da21.zip opie-a505f79190d4d14a7c9595af3e9b78d9c613da21.tar.gz opie-a505f79190d4d14a7c9595af3e9b78d9c613da21.tar.bz2 |
BUG: Lack of a << made opieplayer2 uncompilable.
FIX: It is put in now.
-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 5f281b7..575f2b2 100644 --- a/noncore/multimedia/opieplayer2/lib.cpp +++ b/noncore/multimedia/opieplayer2/lib.cpp | |||
@@ -79,33 +79,33 @@ Lib::Lib( InitializationMode initMode, XineVideoWidget* widget ) | |||
79 | QFile f(configPath); | 79 | QFile f(configPath); |
80 | if (f.open(IO_WriteOnly)) { | 80 | if (f.open(IO_WriteOnly)) { |
81 | QTextStream ts( &f ); | 81 | QTextStream ts( &f ); |
82 | ts << "misc.memcpy_method:glibc\n"; | 82 | ts << "misc.memcpy_method:glibc\n"; |
83 | ts << "# uncomment if you experience double speed audio \n #audio.oss_sync_method:softsync\n"; | 83 | ts << "# uncomment if you experience double speed audio \n #audio.oss_sync_method:softsync\n"; |
84 | ts << "codec.ffmpeg_pp_quality:3\n"; | 84 | ts << "codec.ffmpeg_pp_quality:3\n"; |
85 | ts << "audio.num_buffers:50\n"; | 85 | ts << "audio.num_buffers:50\n"; |
86 | ts << "audio.size_buffers:4096\n"; | 86 | ts << "audio.size_buffers:4096\n"; |
87 | ts << "video.num_buffers:20\n"; | 87 | ts << "video.num_buffers:20\n"; |
88 | ts << "video.size_buffers:4096\n"; | 88 | ts << "video.size_buffers:4096\n"; |
89 | ts << "audio.out_num_audio_buf:16\n"; | 89 | ts << "audio.out_num_audio_buf:16\n"; |
90 | ts << "audio.out_size_audio_buf:8096\n"; | 90 | ts << "audio.out_size_audio_buf:8096\n"; |
91 | ts << "audio.out_size_zero_buf:1024\n"; | 91 | ts << "audio.out_size_zero_buf:1024\n"; |
92 | ts << "audio.passthrough_offset:0\n"; | 92 | ts << "audio.passthrough_offset:0\n"; |
93 | f.close(); | 93 | f.close(); |
94 | } else | 94 | } else |
95 | owarn << "Failed to open " f.name() << oendl; | 95 | owarn << "Failed to open " << f.name() << oendl; |
96 | } | 96 | } |
97 | 97 | ||
98 | if ( initMode == InitializeImmediately ) { | 98 | if ( initMode == InitializeImmediately ) { |
99 | initialize(); | 99 | initialize(); |
100 | m_initialized = true; | 100 | m_initialized = true; |
101 | } | 101 | } |
102 | else | 102 | else |
103 | start(); | 103 | start(); |
104 | } | 104 | } |
105 | 105 | ||
106 | void Lib::run() | 106 | void Lib::run() |
107 | { | 107 | { |
108 | odebug << "Lib::run() started" << oendl; | 108 | odebug << "Lib::run() started" << oendl; |
109 | initialize(); | 109 | initialize(); |
110 | m_initialized = true; | 110 | m_initialized = true; |
111 | odebug << "Lib::run() finished" << oendl; | 111 | odebug << "Lib::run() finished" << oendl; |