diff options
author | mio <[email protected]> | 2024-11-06 21:26:40 +1000 |
---|---|---|
committer | mio <[email protected]> | 2024-11-07 16:15:38 +1000 |
commit | 462472610d2dc46b6b1f82b8b70f0900ae2f8e6c (patch) | |
tree | 5ff5a407cbaf0c74a053eeb1263bdaa2512dd072 /src/app/xineEngine.cpp | |
parent | 32704bb7fa89e1f47a2a6d69c5d1f46d71c0e486 (diff) | |
download | codeine-462472610d2dc46b6b1f82b8b70f0900ae2f8e6c.tar.gz codeine-462472610d2dc46b6b1f82b8b70f0900ae2f8e6c.zip |
Allow seeking in FLAC
Xine has supported seeking in FLAC files since 1.1.16.
Signed-off-by: mio <[email protected]>
Diffstat (limited to 'src/app/xineEngine.cpp')
-rw-r--r-- | src/app/xineEngine.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/app/xineEngine.cpp b/src/app/xineEngine.cpp index 7f73e0d..346af68 100644 --- a/src/app/xineEngine.cpp +++ b/src/app/xineEngine.cpp @@ -517,12 +517,6 @@ VideoWindow::seek( uint pos ) return; } - //TODO depend on a version that CAN seek in flacs! - if( m_url.path().endsWith( ".flac", false ) ) { - emit statusMessage( i18n("xine cannot currently seek in flac media") ); - return; - } - //better feedback //NOTE doesn't work! I can't tell why.. Slider::instance()->TQSlider::setValue( pos ); |