summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormio <[email protected]>2024-11-06 21:26:40 +1000
committermio <[email protected]>2024-11-07 16:37:07 +1000
commit86a889ec4ed4596be4fe4cd172cddc128a72842d (patch)
treef105a7b776b107cafbe1b4e01399448065eaed79
parent78ee94271d3ddc62aa1429d59f7f0f1fc3a57805 (diff)
downloadcodeine-86a889ec4ed4596be4fe4cd172cddc128a72842d.tar.gz
codeine-86a889ec4ed4596be4fe4cd172cddc128a72842d.zip
Allow seeking in FLAC
Xine has supported seeking in FLAC files since 1.1.16. Signed-off-by: mio <[email protected]> (cherry picked from commit 462472610d2dc46b6b1f82b8b70f0900ae2f8e6c)
-rw-r--r--src/app/xineEngine.cpp6
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 );