aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/ffmpeg/detailsdialog.cpp
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2009-05-04 11:51:21 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2009-05-04 11:51:21 +0000
commit2a18cf6706831bdf3cca3d4b25c0701dee46f5cc (patch)
treebd61d6f61e22c9cdd39080c4e37a0bdfa0293ee7 /src/plugins/Input/ffmpeg/detailsdialog.cpp
parent188532e70d8d214f6800f67eb808f8b30cb578f6 (diff)
downloadqmmp-2a18cf6706831bdf3cca3d4b25c0701dee46f5cc.tar.gz
qmmp-2a18cf6706831bdf3cca3d4b25c0701dee46f5cc.tar.bz2
qmmp-2a18cf6706831bdf3cca3d4b25c0701dee46f5cc.zip
fixed m4a support
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@931 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/ffmpeg/detailsdialog.cpp')
-rw-r--r--src/plugins/Input/ffmpeg/detailsdialog.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/Input/ffmpeg/detailsdialog.cpp b/src/plugins/Input/ffmpeg/detailsdialog.cpp
index cf75e2e80..ce268bf8b 100644
--- a/src/plugins/Input/ffmpeg/detailsdialog.cpp
+++ b/src/plugins/Input/ffmpeg/detailsdialog.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2006 by Ilya Kotov *
+ * Copyright (C) 2006-2009 by Ilya Kotov *
* forkotov02@hotmail.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -67,6 +67,7 @@ void DetailsDialog::loadInfo()
if (av_open_input_file(&in, m_path.toLocal8Bit(), NULL,0, NULL) < 0)
return;
av_find_stream_info(in);
+ av_read_play(in);
QString string = QString::fromUtf8(in->title).trimmed();
ui.titleLineEdit->setText(string);
string = QString::fromUtf8(in->author).trimmed();